You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemds.apache.org by ba...@apache.org on 2021/10/04 13:35:35 UTC

[systemds] branch master updated: [MINOR] Force search for our default configuration is none is specified

This is an automated email from the ASF dual-hosted git repository.

baunsgaard pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/systemds.git


The following commit(s) were added to refs/heads/master by this push:
     new 72ccac7  [MINOR] Force search for our default configuration is none is specified
72ccac7 is described below

commit 72ccac70091630f70a7bd79d9b4ca524d49658a4
Author: baunsgaard <ba...@tugraz.at>
AuthorDate: Mon Oct 4 15:33:15 2021 +0200

    [MINOR] Force search for our default configuration is none is specified
    
    This commit is made to force the use of our default configuration if
    none is specified, previously some executions would find our test
    configurations, either for compression or for codeGen.
---
 bin/systemds | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/systemds b/bin/systemds
index b2ff3e4..b74f22a 100755
--- a/bin/systemds
+++ b/bin/systemds
@@ -319,7 +319,7 @@ if [[ "$*" == *-config* ]]; then
   fi
 elif [ -z "$CONFIG_FILE" ] ; then
   # same as above: set config file param if the file exists
-  CONFIG_FILE=$(ordered_find "SystemDS*config*.xml")
+  CONFIG_FILE=$(ordered_find "SystemDS-config-defaults.xml")
   if [ -z "$CONFIG_FILE" ]; then
     CONFIG_FILE=""
   else