fix(app/db_assembler): Allow recursion with bash (#2731)
- Before that commit, the recursion with "**" stopped after the first directory
This commit is contained in:
parent
19c3a70d41
commit
ea709de58b
1 changed files with 3 additions and 0 deletions
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue