7 lines
121 B
Plaintext
7 lines
121 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# Wrapper for cmdelpoy to run it in activated virtualenv.
|
||
|
set -e
|
||
|
. venv/bin/activate
|
||
|
cmdeploy "$@"
|