changeset 1:c021862e9ea8 draft

Fixed bash syntax error in fall back messages
author peterjc
date Thu, 20 Feb 2014 05:37:28 -0500
parents 61c4017d3bf2
children e78bbab7933d
files tool_dependencies.xml
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/tool_dependencies.xml	Mon Jan 13 11:34:35 2014 -0500
+++ b/tool_dependencies.xml	Thu Feb 20 05:37:28 2014 -0500
@@ -45,11 +45,11 @@
                 </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 -->
                 </actions>