Files
relay/scripts/cmdeploy

9 lines
159 B
Bash
Executable File

#!/bin/sh
#
# Wrapper for cmdelpoy to run it in activated virtualenv.
set -e
# Ensure uv is in PATH
export PATH="$HOME/.local/bin:$PATH"
uv run cmdeploy "$@"