mirror of
https://github.com/weaveworks/scope.git
synced 2026-05-04 08:19:17 +00:00
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:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user