log_merge.sh: Fix removal of log files

Files are not being expanded and fails:

Removing Input log files !!!
rm: cannot remove 'GGSN_Tests*.log': No such file or directory

Change-Id: I74e1f00c5e2b41668ebf2060f547fcc01212956d
This commit is contained in:
Pau Espin 2018-03-20 22:06:17 +01:00
parent 7b5e178290
commit feb6fa4413
1 changed files with 1 additions and 1 deletions

View File

@ -26,5 +26,5 @@ done
if [ "$2" = "--rm" ]; then
echo "Removing Input log files !!!"
rm "$LOG_FILES"
rm $LOG_FILES
fi