diff options
author | Ashlee Young <ashlee@wildernessvoice.com> | 2015-11-03 17:07:03 -0800 |
---|---|---|
committer | Ashlee Young <ashlee@wildernessvoice.com> | 2015-11-03 17:07:03 -0800 |
commit | df59c6d0ee404b1716410dac16e5d1321efd395c (patch) | |
tree | 6fbac6b01b148c1a347adb1db2712cfe9b0278f5 | |
parent | a2adcebdb963f53b4a81e54b5d2a5b1151e37074 (diff) |
Fixed issue of bad directory location
Change-Id: I898b9efa72e97095c18dd4265a5d62ea655f8e67
Signed-off-by: Ashlee Young <ashlee@wildernessvoice.com>
-rwxr-xr-x | update_OPNFV-mirror.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/update_OPNFV-mirror.sh b/update_OPNFV-mirror.sh index 387bea6d..5f4e7562 100755 --- a/update_OPNFV-mirror.sh +++ b/update_OPNFV-mirror.sh @@ -69,6 +69,7 @@ displayVersion() setupRepos() { # Check for OPNFV Gerrit Repo + cd $DEVROOT if [ ! -d $OPNFV_REPO ]; then printf "Perhaps you've named it differently, but we don't see $OPNFV_REPO.\n" if ask "Would you like us to checkout ONOSFW from Gerrit?"; then @@ -82,6 +83,7 @@ setupRepos() fi # Check for ONOSFW Mirror Repo + cd $DEVROOT if [ ! -d $GITHUB_REPO ]; then printf "Perhaps you've named it differently, but we don't see $GITHUB_REPO.\n" if ask "Would you like us to checkout ONOSFW from Github?"; then |