From 29a08ba980fa40896e7b2963d614cd4637e84bc3 Mon Sep 17 00:00:00 2001 From: Ronelle Landy Date: Thu, 18 May 2017 10:11:41 -0400 Subject: [PATCH] Copy all requirements files from gating repo to tripleo-quickstart Currently, include-gate-changes only copies the requirements.txt file. However, if modifications were made to any other requirements file, those will be lost. This review copies all requirements files so those changes are maintained. Change-Id: I8e19f6e949319d61696e9c35574fb525d11fcf99 --- ci-scripts/include-gate-changes.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-scripts/include-gate-changes.sh b/ci-scripts/include-gate-changes.sh index d9bfc9a5b..93687c589 100644 --- a/ci-scripts/include-gate-changes.sh +++ b/ci-scripts/include-gate-changes.sh @@ -17,7 +17,7 @@ fi if [ -d $WORKSPACE/tripleo-quickstart-gate-repo ]; then mv $WORKSPACE/tripleo-quickstart $WORKSPACE/tripleo-quickstart-old mv $WORKSPACE/tripleo-quickstart-gate-repo $WORKSPACE/tripleo-quickstart - cp $WORKSPACE/tripleo-quickstart-old/requirements* $WORKSPACE/tripleo-quickstart/ + cp $WORKSPACE/tripleo-quickstart-old/*requirements* $WORKSPACE/tripleo-quickstart/ # Change into the new quickstart directory to use the new changes cd $WORKSPACE/tripleo-quickstart fi