From 0c228ffc7ecfbe78e19d8e1ad8c6e6dc2263fbbb Mon Sep 17 00:00:00 2001 From: qingszhao Date: Tue, 21 Aug 2018 14:56:56 +0000 Subject: import zuul job settings from project-config This is a mechanically generated patch to complete step 1 of moving the zuul job settings out of project-config and into each project repository. Because there will be a separate patch on each branch, the branch specifiers for branch-specific jobs have been removed. Because this patch is generated by a script, there may be some cosmetic changes to the layout of the YAML file(s) as the contents are normalized. See the python3-first goal document for details: https://governance.openstack.org/tc/goals/stein/python3-first.html Add a fix for tox_install.sh to avoid it erroring out when called with no arguments. Change-Id: Icfa74452c3563dad50ea72b503012acc57d0636b Story: #2002586 Task: #24320 --- tools/tox_install.sh | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tools') diff --git a/tools/tox_install.sh b/tools/tox_install.sh index 4af3be16..dc1ddc11 100755 --- a/tools/tox_install.sh +++ b/tools/tox_install.sh @@ -51,5 +51,10 @@ fi # install will be constrained and we need to unconstrain it. edit-constraints $localfile -- $CLIENT_NAME "-e file://$PWD#egg=$CLIENT_NAME" +if [ -z "$*" ]; then + echo "No packages to be installed." + exit 0 +fi + $install_cmd -U $* exit $? -- cgit v1.2.1