mirror of
https://github.com/ComradCollective/Comrad
synced 2024-11-09 13:10:44 +00:00
19 lines
321 B
Plaintext
Executable File
19 lines
321 B
Plaintext
Executable File
##
|
|
# Run the command line app
|
|
##
|
|
|
|
|
|
SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
path=`realpath "$SCRIPTPATH/../komrade/cli/cli.py"`
|
|
pathvenv=`realpath "$SCRIPTPATH/../venv/bin/activate"`
|
|
source $pathvenv
|
|
|
|
python "$path" $*
|
|
|
|
|
|
if command -v deactivate &> /dev/null
|
|
then
|
|
deactivate
|
|
fi
|