This is an automated email from the ASF dual-hosted git repository. rkk pushed a commit to branch RKuttruff-patch-1 in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git
commit ba4850734194fdd742c4ed174e6750eca6daf435 Author: Riley Kuttruff <[email protected]> AuthorDate: Wed Jan 31 15:37:26 2024 -0800 bugfix --- docker/nexus-webapp/install_nexusproto.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/nexus-webapp/install_nexusproto.sh b/docker/nexus-webapp/install_nexusproto.sh index 08d1894..930e328 100755 --- a/docker/nexus-webapp/install_nexusproto.sh +++ b/docker/nexus-webapp/install_nexusproto.sh @@ -26,7 +26,7 @@ if [ ! -z ${BUILD_NEXUSPROTO+x} ]; then GIT_BRANCH=${2:-$MASTER} mkdir nexusproto - pushd nexusproto + cd nexusproto git init git pull ${GIT_REPO} ${GIT_BRANCH} @@ -35,7 +35,7 @@ if [ ! -z ${BUILD_NEXUSPROTO+x} ]; then ./gradlew install --info rm -rf /root/.gradle - popd + cd .. rm -rf nexusproto else pip install nexusproto
