From c1ba3fbd0a3cae28e2f50d04bc346a72272cbf18 Mon Sep 17 00:00:00 2001 From: Hannes Date: Thu, 11 Jun 2026 20:24:57 +0200 Subject: [PATCH] fis missing folder --- install.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/install.sh b/install.sh index 10bc87a..75647da 100755 --- a/install.sh +++ b/install.sh @@ -15,6 +15,13 @@ copy_missing() { fi } +if [ ! -d "$SCRIPT_DIR/user_config" ]; then + mkdir "$SCRIPT_DIR/user_config" + echo "$SCRIPT_DIR/user_config created" +else + echo "$SCRIPT_DIR/user_config exists" +fi + copy_missing "$SCRIPT_DIR/user_config/monitor.conf" copy_missing "$SCRIPT_DIR/user_config/input.conf" copy_missing "$SCRIPT_DIR/user_config/workspace.conf"