From f705ac831b843d547e2c4753c796e53868c5ae83 Mon Sep 17 00:00:00 2001 From: "E. S." Date: Tue, 9 Jul 2024 20:33:27 +0300 Subject: [PATCH] fix --- run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.sh b/run.sh index 67cef7e..acad6da 100755 --- a/run.sh +++ b/run.sh @@ -20,7 +20,7 @@ if [ $install -eq 1 ]; then python3 -m venv .venv; fi trap deactivate_venv EXIT INT TERM if [ $install -eq 1 ]; then pip install -r requirements.txt; fi -[ -d "$config_idr" ] || { +[ -d "$config_dir" ] || { >&2 echo "error: config directory '$config_dir' does not exists" exit 1 }