You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by du...@apache.org on 2016/01/11 21:41:36 UTC

incubator-systemml git commit: Updated dml script class path from ibm to apache.

Repository: incubator-systemml
Updated Branches:
  refs/heads/master a13ba188b -> 4d19a2097


Updated dml script class path from ibm to apache.

The systemml.bat script referenced previous ibm path instead of new apache path which resulted in 'Could not find DMLScript.class. You must build the project.' error message.

Closes #33.


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

Branch: refs/heads/master
Commit: 4d19a20974373a80cf9648fe2f75b39eb154aec5
Parents: a13ba18
Author: Glenn Weidner <gw...@us.ibm.com>
Authored: Mon Jan 11 12:38:28 2016 -0800
Committer: Mike Dusenberry <mw...@us.ibm.com>
Committed: Mon Jan 11 12:38:28 2016 -0800

----------------------------------------------------------------------
 bin/systemml.bat | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/4d19a209/bin/systemml.bat
----------------------------------------------------------------------
diff --git a/bin/systemml.bat b/bin/systemml.bat
index 1e5632c..d369927 100755
--- a/bin/systemml.bat
+++ b/bin/systemml.bat
@@ -36,7 +36,7 @@ popd
 
 SET BUILD_DIR=%PROJECT_ROOT_DIR%\target
 SET HADOOP_LIB_DIR=%BUILD_DIR%\lib
-SET DML_SCRIPT_CLASS=%BUILD_DIR%\classes\com\ibm\bi\dml\api\DMLScript.class
+SET DML_SCRIPT_CLASS=%BUILD_DIR%\classes\org\apache\sysml\api\DMLScript.class
 
 SET BUILD_ERR_MSG=You must build the project before running this script.
 SET BUILD_DIR_ERR_MSG=Could not find target directory "%BUILD_DIR%". %BUILD_ERR_MSG%