mirror of
https://github.com/chatmail/relay.git
synced 2026-05-10 16:04:37 +00:00
9 lines
176 B
Bash
Executable File
9 lines
176 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:/root/.local/bin:$PATH"
|
|
|
|
uv run cmdeploy "$@"
|