Skip to content

Commit

Permalink
Fix shell syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Aug 25, 2018
1 parent e73257f commit 7f807ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -638,13 +638,13 @@ else
structured_data_args=""
fi
if [ "$with_framework_test_tools_arg" ]; then
if [ "$with_framework_test_tools_arg" == "-with_framework_test_tools" ]; then
if [ "$with_framework_test_tools_arg" = "-with_framework_test_tools" ]; then
GALAXY_TEST_TOOL_CONF="config/tool_conf.xml.sample,test/functional/tools/samples_tool_conf.xml"
elif [ "$with_framework_test_tools_arg" == "-migrated" ]; then
elif [ "$with_framework_test_tools_arg" = "-migrated" ]; then
GALAXY_TEST_TOOL_CONF="config/migrated_tools_conf.xml"
elif [ "$with_framework_test_tools_arg" == "-shed" ]; then
elif [ "$with_framework_test_tools_arg" = "-shed" ]; then
GALAXY_TEST_TOOL_CONF="config/shed_tool_conf.xml"
elif [ "$with_framework_test_tools_arg" == "-with_main_tools" ]; then
elif [ "$with_framework_test_tools_arg" = "-with_main_tools" ]; then
GALAXY_TEST_TOOL_CONF="config/tool_conf.xml.main"
fi
export GALAXY_TEST_TOOL_CONF
Expand Down

0 comments on commit 7f807ce

Please sign in to comment.