aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docker/cgitize.sh
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xdocker/cgitize.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/docker/cgitize.sh b/docker/cgitize.sh
index 92fe43c..be33601 100755
--- a/docker/cgitize.sh
+++ b/docker/cgitize.sh
@@ -14,6 +14,7 @@ readonly script_dir
readonly src_dir=/usr/src
readonly cfg_path=/etc/cgitize/cgitize.toml
+readonly fail_path=/fail
secure_repo_dir() {
local dir
@@ -29,11 +30,13 @@ secure_repo_dir() {
setup() {
secure_repo_dir
+ touch -- "$fail_path"
}
run() {
cd -- "$src_dir"
- exec python3 -m cgitize.main "$@"
+ python3 -m cgitize.main "$@"
+ rm -f -- "$fail_path"
}
main() {