Add check for missing folder

This commit is contained in:
jackhack96 2025-12-03 15:58:14 +01:00
parent 069195c4e7
commit d77a61eb01

View file

@ -19,6 +19,9 @@ check_impulse_response_directory() {
if [ ! -d "$PRESETS_DIRECTORY/irs" ]; then if [ ! -d "$PRESETS_DIRECTORY/irs" ]; then
mkdir "$PRESETS_DIRECTORY/irs" mkdir "$PRESETS_DIRECTORY/irs"
fi fi
if [ ! -d "$PRESETS_DIRECTORY/output" ]; then
mkdir "$PRESETS_DIRECTORY/output"
fi
} }
read_choice() { read_choice() {