extras/in_parallel.sh: remove erroneous quotes

$COMMAND can contain "make RM="

This patch fixes a regression caused by
https://github.com/weaveworks/scope/pull/2068/files#diff-42138a4802cce915f347919ccd707876R28
This commit is contained in:
Alessandro Puccetti
2017-02-21 17:28:55 +01:00
parent e81f674a02
commit 6b2b483cbc

View File

@@ -25,7 +25,7 @@ echo Doing "$INPUTS"
for INPUT in $INPUTS; do
START=$(date +%s)
"$COMMAND" "$INPUT"
$COMMAND "$INPUT"
RUNTIME=$(($(date +%s) - START))
python "../tools/sched" time "$INPUT" "$RUNTIME"