diff options
| author | bloodstalker <thabogre@gmail.com> | 2017-02-27 09:35:55 +0000 | 
|---|---|---|
| committer | bloodstalker <thabogre@gmail.com> | 2017-02-27 09:35:55 +0000 | 
| commit | 5e083bf8c3992a24bd01ce8155940c361225e1eb (patch) | |
| tree | 4121eb83015843b56297943bbcd8e95d1f9842a9 | |
| parent | updated (diff) | |
| download | mutator-5e083bf8c3992a24bd01ce8155940c361225e1eb.tar.gz mutator-5e083bf8c3992a24bd01ce8155940c361225e1eb.zip | |
the previous fix to supprt arguments having double-quotes was not working. now its fixed.
| -rwxr-xr-x | mutator.sh | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -107,7 +107,7 @@ do  				if [[ "$F_END_ACTION" == run ]]; then  					echo "running $F_ACTION_NAME ..."  					echo "running ./$F_EXEC_NAME $F_EXEC_COPTS $F_IN_FILES -- $F_LIBTOOLING_OPTS > $F_OUT_FILE for $F_ACTION_NAME" -          "./"$F_EXEC_NAME ${!F_EXEC_COPTS} $F_IN_FILES -- $F_LIBTOOLING_OPTS > $F_OUT_FILE +          eval "./"$F_EXEC_NAME $F_EXEC_COPTS $F_IN_FILES -- $F_LIBTOOLING_OPTS > $F_OUT_FILE  					if [[ "$F_PRINT_PRETTY" = true ]]; then  						echo "running pretty print..."  						source ./extra-tools/ReportPrintPretty.sh $F_OUT_FILE $F_OUT_FILE-pretty | 
