Files
abstracto/python/deployment/installer/template-deployment/wrapper/deploy.sh

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