Ditch the bash requirement

This commit is contained in:
h3artbl33d 2024-05-11 12:19:12 +02:00
parent c7ea100634
commit 4d2dfd0c50
2 changed files with 2 additions and 4 deletions

View File

@ -1,6 +1,5 @@
#!/usr/bin/env bash #!/bin/sh -e
# #
# Wrapper for cmdelpoy to run it in activated virtualenv. # Wrapper for cmdelpoy to run it in activated virtualenv.
set -e
. venv/bin/activate . venv/bin/activate
cmdeploy "$@" cmdeploy "$@"

View File

@ -1,5 +1,4 @@
#!/bin/bash #!/bin/sh -e
set -e
python3 -m venv --upgrade-deps venv python3 -m venv --upgrade-deps venv
venv/bin/pip install -e chatmaild venv/bin/pip install -e chatmaild