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
This commit is contained in:
Ronelle Landy 2017-05-18 10:11:41 -04:00
parent a391c5e007
commit 29a08ba980

View File

@ -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