From d77a61eb01c36e2c794bddc25423445331e99915 Mon Sep 17 00:00:00 2001 From: jackhack96 Date: Wed, 3 Dec 2025 15:58:14 +0100 Subject: [PATCH] Add check for missing folder --- install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install.sh b/install.sh index 71adac5..13a77ee 100755 --- a/install.sh +++ b/install.sh @@ -19,6 +19,9 @@ check_impulse_response_directory() { if [ ! -d "$PRESETS_DIRECTORY/irs" ]; then mkdir "$PRESETS_DIRECTORY/irs" fi + if [ ! -d "$PRESETS_DIRECTORY/output" ]; then + mkdir "$PRESETS_DIRECTORY/output" + fi } read_choice() {