| Previous changeset 1:5a449da71d08 (2013-10-08) Next changeset 3:d3d718debab0 (2015-09-30) |
|
Commit message:
Fixed bash syntax error in fall back messages |
|
modified:
tool_dependencies.xml |
| b |
| diff -r 5a449da71d08 -r 6f6a8be93479 tool_dependencies.xml --- a/tool_dependencies.xml Tue Oct 08 04:54:29 2013 -0400 +++ b/tool_dependencies.xml Thu Feb 20 05:37:57 2014 -0500 |
| b |
| @@ -45,13 +45,13 @@ </actions> <!-- This actions tag is only processed if none of the above tags resulted in a successful installation. --> <actions> - <action type="shell_command">echo ERROR: Automated installation on your operating system and CPU architecture combination is not yet supported.</action> - <action type="shell_command">echo Your machine details (the output from 'uname' and 'arch'):</action> + <action type="shell_command">echo "ERROR: Automated installation on your operating system and CPU architecture combination is not yet supported."</action> + <action type="shell_command">echo "Your machine details (the output from 'uname' and 'arch'):"</action> <action type="shell_command">uname</action> <action type="shell_command">arch</action> - <action type="shell_command">echo Please report this via https://github.com/peterjc/galaxy_blast/issues - thank you!</action> + <action type="shell_command">echo "Please report this via https://github.com/peterjc/galaxy_blast/issues - thank you!"</action> <action type="shell_command">false</action> - <!-- The 'false' command will return an error, so Galaxy should treat this as a failed install --> + <!-- The 'false' command will return an error, so Galaxy should treat this as a failed install --> </actions> <!-- The $PATH environment variable is only set if one of the above <actions> tags resulted in a successful installation. --> <action type="set_environment"> |