diff options
Diffstat (limited to 'jjb/dmm')
-rw-r--r-- | jjb/dmm/include-raw-dmm-csit-functional-virl.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/jjb/dmm/include-raw-dmm-csit-functional-virl.sh b/jjb/dmm/include-raw-dmm-csit-functional-virl.sh index 5571bd574..715601a21 100644 --- a/jjb/dmm/include-raw-dmm-csit-functional-virl.sh +++ b/jjb/dmm/include-raw-dmm-csit-functional-virl.sh @@ -14,8 +14,6 @@ set -xeu -o pipefail -cd ../ - # Clone csit and start tests git clone https://gerrit.fd.io/r/csit @@ -25,8 +23,10 @@ if [ $? != 0 ]; then exit 1 fi +mkdir -p ./csit/dmm/ + # Move the dmm to the csit dir -sudo mv -f ./dmm/ ./csit/ +rsync -av --progress --exclude="csit" . ./csit/dmm/ cd csit |