You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by ac...@apache.org on 2017/11/22 20:25:27 UTC

systemml git commit: [SYSTEMML][MINOR] Fix classpath in release script

Repository: systemml
Updated Branches:
  refs/heads/master 5b9c12df6 -> 6bd2d8808


[SYSTEMML][MINOR] Fix classpath in release script


Project: http://git-wip-us.apache.org/repos/asf/systemml/repo
Commit: http://git-wip-us.apache.org/repos/asf/systemml/commit/6bd2d880
Tree: http://git-wip-us.apache.org/repos/asf/systemml/tree/6bd2d880
Diff: http://git-wip-us.apache.org/repos/asf/systemml/diff/6bd2d880

Branch: refs/heads/master
Commit: 6bd2d880813f6dd82e45a7f24fcd14f692a16eb1
Parents: 5b9c12d
Author: Arvind Surve <ac...@yahoo.com>
Authored: Wed Nov 22 12:25:06 2017 -0800
Committer: Arvind Surve <ac...@yahoo.com>
Committed: Wed Nov 22 12:25:06 2017 -0800

----------------------------------------------------------------------
 dev/release/release-verify.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/systemml/blob/6bd2d880/dev/release/release-verify.sh
----------------------------------------------------------------------
diff --git a/dev/release/release-verify.sh b/dev/release/release-verify.sh
index f53604c..f9516fb 100755
--- a/dev/release/release-verify.sh
+++ b/dev/release/release-verify.sh
@@ -158,7 +158,7 @@ cd $EXEC_DIR/src/test/java
 if [[ "$COMPILE_CODE" == "true" ]]; then
     echo "`date +%Y-%m-%dT%H:%M:%S`: INFO: Compiling release verify utility..."
 
-    javac -Xlint:unchecked -classpath ../../../../..//target/lib/commons-compress-1.4.1.jar:../../../../..//target/lib/commons-io-2.4.jar:. org/apache/sysml/validation/*.java
+    javac -Xlint:unchecked -classpath ../../../target/release/systemml/target/lib/commons-compress-1.4.1.jar:../../../target/release/systemml/target/lib/commons-io-2.4.jar:. org/apache/sysml/validation/*.java
 
     cd "$ORIG_DIR" # Return to directory from it was called.
     exit 0
@@ -182,7 +182,7 @@ fi
 if [[ "$LIC_NOTICE_VERIFY" == "true" ]]; then
     echo "`date +%Y-%m-%dT%H:%M:%S`: INFO: Verifying license and notices from zip/tgz/tar.gz files..."
 
-    java -classpath ../../../../..//target/lib/commons-compress-1.4.1.jar:../../../../..//target/lib/commons-io-2.4.jar:. org/apache/sysml/validation/ValidateLicAndNotice $DIST_DIR
+    java -classpath ../../../target/release/systemml/target/lib/commons-compress-1.4.1.jar:../../../target/release/systemml/target/lib/commons-io-2.4.jar:. org/apache/sysml/validation/ValidateLicAndNotice $DIST_DIR
     RET_CODE=$?
     if [[ $RET_CODE == 0 ]]; then
        echo "`date +%Y-%m-%dT%H:%M:%S`: INFO: Verification of license and notices completed successfully."