Clean up hwvtep csit combinations and triggers
[releng/builder.git] / jjb / include-raw-stage-release.sh
index bf45078ce90fd1c8be489052225a71e898def442..2a224c670025e2ea5fe62daac47f0a52c7dbf90e 100644 (file)
 ##############################################################################
 
 # Assuming that mvn deploy created the hide/from/pom/files/stage directory.
-cd hide/from/pom/files
+cd hide/from/pom/files || exit 1
 mkdir -p m2repo/org/opendaylight/
 
 rsync -avz --exclude 'maven-metadata*' \
            --exclude '_remote.repositories' \
            --exclude 'resolver-status.properties' \
-           "stage/org/opendaylight/$m" m2repo/org/opendaylight/
+           "stage/org/opendaylight/$PROJECT" m2repo/org/opendaylight/
 
 mvn org.sonatype.plugins:nexus-staging-maven-plugin:1.6.2:deploy-staged-repository \
-    -DrepositoryDirectory="`pwd`/m2repo" \
+    -DrepositoryDirectory="$(pwd)/m2repo" \
     -DnexusUrl=https://nexus.opendaylight.org/ \
     -DstagingProfileId="$STAGING_PROFILE_ID" \
     -DserverId="opendaylight-staging" \
-    -s $SETTINGS_FILE \
-    -gs $GLOBAL_SETTINGS_FILE | tee $WORKSPACE/deploy-staged-repository.log
+    -s "$SETTINGS_FILE" \
+    -gs "$GLOBAL_SETTINGS_FILE" | tee "$WORKSPACE/deploy-staged-repository.log"