From ea709de58baf6339fd2e589ad51c54d9f901736a Mon Sep 17 00:00:00 2001 From: Barbz Date: Tue, 31 Mar 2020 23:34:20 +0200 Subject: [PATCH] fix(app/db_assembler): Allow recursion with bash (#2731) - Before that commit, the recursion with "**" stopped after the first directory --- apps/db_assembler/includes/functions.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/db_assembler/includes/functions.sh b/apps/db_assembler/includes/functions.sh index 6428910a7..f17fe187f 100644 --- a/apps/db_assembler/includes/functions.sh +++ b/apps/db_assembler/includes/functions.sh @@ -140,6 +140,9 @@ function dbasm_assemble() { curTime=`date +%Y_%m_%d_%H_%M_%S` + # ALLOW FOR RECURSION WITH "**" + shopt -s globstar + if [ $with_base = true ]; then echo "" > $OUTPUT_FOLDER$database$suffix_base".sql"