diff options
author | sharath <sharathkumarboyanapally@gmail.com> | 2018-10-25 17:44:25 +0530 |
---|---|---|
committer | sharath <sharathkumarboyanapally@gmail.com> | 2018-10-25 17:47:40 +0530 |
commit | 9078579364beb66efae5a03e6e3c6665e381cc28 (patch) | |
tree | 539e3091d2a4d721774b0223d2ff15a0acd41edc | |
parent | 010c9523539d2415ee4881803fb6363836148929 (diff) |
Fix: Let rsync exclude csit repo directory alone
Change-Id: If81e92c98066280a6889efc934f49f949f1f7307
Signed-off-by: sharath <sharathkumarboyanapally@gmail.com>
-rw-r--r-- | jjb/dmm/include-raw-dmm-csit-functional-virl.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/dmm/include-raw-dmm-csit-functional-virl.sh b/jjb/dmm/include-raw-dmm-csit-functional-virl.sh index 715601a21..444d2611c 100644 --- a/jjb/dmm/include-raw-dmm-csit-functional-virl.sh +++ b/jjb/dmm/include-raw-dmm-csit-functional-virl.sh @@ -26,7 +26,7 @@ fi mkdir -p ./csit/dmm/ # Move the dmm to the csit dir -rsync -av --progress --exclude="csit" . ./csit/dmm/ +rsync -av --progress --exclude="./csit" . ./csit/dmm/ cd csit |