summaryrefslogtreecommitdiffstats
path: root/__root__
diff options
context:
space:
mode:
authorJan Pokorný <jpokorny@redhat.com>2015-04-15 13:07:15 +0200
committerJan Pokorný <jpokorny@redhat.com>2015-04-15 15:26:20 +0200
commit20926d4f5f1b37f14ff49dbae540d585942a3918 (patch)
treec21c5834131f5f0529cd18501f2e28bf03af9693 /__root__
parent9ed0f365be54eae2f817be16a8422a13c07ac2dd (diff)
downloadclufter-20926d4f5f1b37f14ff49dbae540d585942a3918.tar.gz
clufter-20926d4f5f1b37f14ff49dbae540d585942a3918.tar.xz
clufter-20926d4f5f1b37f14ff49dbae540d585942a3918.zip
commands/ccs2pcs: cosmetics/orderings (import/kwargs)
Unfortunately changing the order of ccs2pcs_needle kwargs also changed the order in which the arguments (when parsed in a terse/option-less notation) are expected --> fix that in run-check script as well. Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
Diffstat (limited to '__root__')
-rwxr-xr-x__root__/run-check2
1 files changed, 1 insertions, 1 deletions
diff --git a/__root__/run-check b/__root__/run-check
index 7d0517d..00d2d52 100755
--- a/__root__/run-check
+++ b/__root__/run-check
@@ -37,7 +37,7 @@ run_check() {
# self-check for sanity usage
testcib="$(mktemp)" testcoro="$(mktemp)"
{ { ${PYTHONEXEC} run-dev ccs2pcs-needle --dist redhat,7.1,Maipo \
- "${@}" -- - "${testcib}" - \
+ "${@}" -- - - "${testcib}" \
| grep -Ev 'key: _NOT_SECRET--' > "${testcoro}"; } \
&& echo "TEST: execution OK" \
|| { echo "TEST: execution FAIL"; ret=20; }; }<<EOF