diff options
author | 2017-01-17 08:38:32 +0000 | |
---|---|---|
committer | 2017-01-17 08:38:32 +0000 | |
commit | e2be584139c256edfb55c2c3efb118511faddf69 (patch) | |
tree | 3da3ff7d871eb519e4a970a1d019539a686e415e /jjb/3rd_party_ci/install-netvirt.sh | |
parent | 76e722eca7e73a1a920ff5fb1fa2dc2107753276 (diff) | |
parent | 3a4bd17dd35ef792903601a109fe7934728bcd3c (diff) |
Merge "Avoid removing the whole file system"
Diffstat (limited to 'jjb/3rd_party_ci/install-netvirt.sh')
-rwxr-xr-x | jjb/3rd_party_ci/install-netvirt.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/jjb/3rd_party_ci/install-netvirt.sh b/jjb/3rd_party_ci/install-netvirt.sh index 96c4b9634..f111d4847 100755 --- a/jjb/3rd_party_ci/install-netvirt.sh +++ b/jjb/3rd_party_ci/install-netvirt.sh @@ -1,5 +1,12 @@ #!/bin/bash set -e + +if [ -z ${WORKSPACE} ]; then + echo "WORKSPACE is unset. Please do so." + exit 1 +fi +# wipe the WORKSPACE +/bin/rm -rf $WORKSPACE/* # clone opnfv sdnvpn repo git clone https://gerrit.opnfv.org/gerrit/p/sdnvpn.git $WORKSPACE/sdnvpn . $WORKSPACE/sdnvpn/odl-pipeline/odl-pipeline-common.sh |