From 2f5e2ed14d8c6626bb05d47723dc0b39881a4599 Mon Sep 17 00:00:00 2001 From: MilhouseVH Date: Sat, 2 Mar 2019 07:03:16 +0000 Subject: [PATCH] tools/viewplan: fix argument order --- tools/viewplan | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/viewplan b/tools/viewplan index 3b58af267b..09fdc889b6 100755 --- a/tools/viewplan +++ b/tools/viewplan @@ -24,6 +24,6 @@ command -v ${PARALLEL_BIN} >/dev/null || PARALLEL_BIN=fake_parallel set -o pipefail cat ${_CACHE_PACKAGE_GLOBAL} ${_CACHE_PACKAGE_LOCAL} | \ - ${PARALLEL_BIN} --plain --no-notice --max-args 30 json_worker --halt now,fail=1 | \ + ${PARALLEL_BIN} --plain --no-notice --max-args 30 --halt now,fail=1 json_worker | \ ${SCRIPTS}/genbuildplan.py --no-reorder --show-wants --build ${@:-image} --warn-invalid ${GENFLAGS} || \ die "FAILURE: Unable to generate plan"