Paul Morel wrote: > I am having a similar issue with python on an older windows machine. I > finally had to punt and perform my builds on a linux machine through some > SVN magic. This is the error I keep getting: > > Traceback (most recent call last): > File "generate.py", line 33, in <module> > os.chdir(os.path.dirname(sys.argv[0])) # switch to skeleton dir > OSError: [Errno 2] No such file or directory: '' >
There was an issue with some variants of invoking the generate.py script (e.g. like "python generate.py ...") which has been fixed in trunk. Try patching the above line in generate.py with os.chdir(os.path.dirname(os.path.abspath(sys.argv[0]))) or prefix the script name like python ./generate.py ... T. ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
