[tuxdroid-svn] r6083 - in software_suite_v3/software/plugin/plugins-demo/bash-HelloWorld-plugin: t
Status: Beta
Brought to you by:
ks156
|
From: jerome <c2m...@c2...> - 2010-03-08 12:02:37
|
Author: jerome
Date: 2010-03-08 13:02:21 +0100 (Mon, 08 Mar 2010)
New Revision: 6083
Modified:
software_suite_v3/software/plugin/plugins-demo/bash-HelloWorld-plugin/tags/0.1/executables/start.py
software_suite_v3/software/plugin/plugins-demo/bash-HelloWorld-plugin/trunk/executables/start.py
Log:
* Fixed command ( oups )
Modified: software_suite_v3/software/plugin/plugins-demo/bash-HelloWorld-plugin/tags/0.1/executables/start.py
===================================================================
--- software_suite_v3/software/plugin/plugins-demo/bash-HelloWorld-plugin/tags/0.1/executables/start.py 2010-03-08 11:10:56 UTC (rev 6082)
+++ software_suite_v3/software/plugin/plugins-demo/bash-HelloWorld-plugin/tags/0.1/executables/start.py 2010-03-08 12:02:21 UTC (rev 6083)
@@ -47,7 +47,7 @@
"""
"""
if os.name != "nt":
- os.system("perl executables//bashHelloWorld.sh check")
+ os.system("executables//bashHelloWorld.sh check")
else:
self.throwMessage("No matching platform")
Modified: software_suite_v3/software/plugin/plugins-demo/bash-HelloWorld-plugin/trunk/executables/start.py
===================================================================
--- software_suite_v3/software/plugin/plugins-demo/bash-HelloWorld-plugin/trunk/executables/start.py 2010-03-08 11:10:56 UTC (rev 6082)
+++ software_suite_v3/software/plugin/plugins-demo/bash-HelloWorld-plugin/trunk/executables/start.py 2010-03-08 12:02:21 UTC (rev 6083)
@@ -47,7 +47,7 @@
"""
"""
if os.name != "nt":
- os.system("perl executables//bashHelloWorld.sh check")
+ os.system("executables//bashHelloWorld.sh check")
else:
self.throwMessage("No matching platform")
|