mirror of
https://github.com/Sheldan/abstracto.git
synced 2026-01-01 15:28:35 +00:00
11 lines
154 B
Bash
11 lines
154 B
Bash
#!/bin/sh
|
|
|
|
echo "Starting deployment."
|
|
|
|
target_dir=$1
|
|
|
|
python3 -u python/main.py "${target_dir}"
|
|
exit_code=$?
|
|
|
|
echo "Finished deployment."
|
|
exit $exit_code |