aboutsummaryrefslogtreecommitdiffstats
path: root/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'run.sh')
-rwxr-xr-xrun.sh11
1 files changed, 7 insertions, 4 deletions
diff --git a/run.sh b/run.sh
index 57d3128..a31acb6 100755
--- a/run.sh
+++ b/run.sh
@@ -8,10 +8,13 @@ setopt all_export
source .env
unsetopt all_export
-if [[ -f $1 ]]; then
- ./venv/bin/python3 $1
-elif [[ -f scripts/$1 ]]; then
- ./venv/bin/python3 scripts/$1
+script=$1
+shift
+
+if [[ -f $script ]]; then
+ ./venv/bin/python3 $script $@
+elif [[ -f scripts/$script ]]; then
+ ./venv/bin/python3 scripts/$script $@
else
print -u2 "Computer says no" && exit 1
fi