diff options
author | Yehonal <yehonal.azeroth@gmail.com> | 2016-08-25 19:48:50 +0200 |
---|---|---|
committer | Yehonal <yehonal.azeroth@gmail.com> | 2016-08-25 19:48:50 +0200 |
commit | cb19ac25b78c883b06ac642e4b58a67ddb6d54f9 (patch) | |
tree | 9e4a33235483000c2d7690ea7c37793ce5208f97 /bin | |
parent | 5b3c776f9c28b6a321663203d72930f003a4a118 (diff) |
minor fix for db_assembler
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/db_assembler/db_assembler.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/db_assembler/db_assembler.sh b/bin/db_assembler/db_assembler.sh index 8eb9b7175c..a6a657c02d 100755 --- a/bin/db_assembler/db_assembler.sh +++ b/bin/db_assembler/db_assembler.sh @@ -156,10 +156,10 @@ echo "===== STARTING PROCESS =====" echo "" > $reg_file - for k in "${!registry__*}" + for k in ${!registry__*} do n=$k - echo "$k='${!n}'" >> "$reg_file" + echo "$k='${!n}';" >> "$reg_file" done echo "===== DONE =====" |