It seems that commands in bat files are launched synchronously so
Pyclewn command does not work on Windows currently.

Trivial patch below seems fixing this without regressions:

diff -r d2ceeb2c60e1 pyclewn_install.py
--- a/pyclewn_install.py        Sat Aug 21 18:42:46 2010 +0200
+++ b/pyclewn_install.py        Mon Aug 23 20:40:09 2010 +0100
@@ -95,7 +95,7 @@
     pyexe = pathjoin(prefix, 'python.exe')
     scriptpy = pathjoin(scripts, 'pyclewn')
     f = open(pathjoin(scripts, 'pyclewn.bat'), 'w')
-    f.write("@%s %s %%*\n" % (pyexe, scriptpy))
+    f.write("@start %s %s %%*\n" % (pyexe, scriptpy))
     f.close()

     # create Windows shortcut

------------------------------------------------------------------------------
Sell apps to millions through the Intel(R) Atom(Tm) Developer Program
Be part of this innovative community and reach millions of netbook users 
worldwide. Take advantage of special opportunities to increase revenue and 
speed time-to-market. Join now, and jumpstart your future.
http://p.sf.net/sfu/intel-atom-d2d
_______________________________________________
Pyclewn-general mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/pyclewn-general

Reply via email to