diff options
author | yangyan <yangyanyj@chinamobile.com> | 2019-05-14 09:35:09 +0800 |
---|---|---|
committer | yangyan <yangyanyj@chinamobile.com> | 2019-05-14 09:35:40 +0800 |
commit | b1e1628d0c17544db64a37f7da89763aa676d3cd (patch) | |
tree | 9104bcb1137da135cb397b6a5b8195671a7e03f3 | |
parent | 51a5b243a40535f2a8b7133deed8deae2a6f765f (diff) |
fix bug of docker file
Change-Id: Id6ce5e5c3b1ec4239987e4947e0f7c1780343dcb
Issue-ID: VFC-1386
Signed-off-by: yangyan <yangyanyj@chinamobile.com>
-rwxr-xr-x | docker/docker-env-conf.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/docker-env-conf.sh b/docker/docker-env-conf.sh index 51f98c5..f6e9a01 100755 --- a/docker/docker-env-conf.sh +++ b/docker/docker-env-conf.sh @@ -8,7 +8,7 @@ install_sf(){ # get binary zip from nexus - vfc-nfvo-genericparser - wget -q -O modeling-genericparser.zip 'https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.modeling.genericparser&a=modeling-genericparser&e=zip&v=${pkg_version}-SNAPSHOT&e=zip' && \ + wget -q -O modeling-genericparser.zip "https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.modeling.genericparser&a=modeling-genericparser&e=zip&v=${pkg_version}-SNAPSHOT&e=zip" && \ unzip modeling-genericparser.zip && \ rm -rf modeling-genericparser.zip && \ pip install --upgrade setuptools pip && \ |