We are about to switch to a new forum software. Until then we have removed the registration on this forum.
For a grading script, I have a directory:
grading2/temp/tmp
inside this directory we create a directory a, and inside that we rename the processing file to a.pde. From the directory shown above, we execute:
processing-java --sketch=a --output=test --build
This works in linux, but fails in windows with the message "a not found"
Answers
Windows is a bit picky about the / slash. Ask the OS using println() on how it likes the path to be formatted, most likely with a \ slash.
Ask = request the sketch folder location etc.
in the cmd prompt, we are at that directory. There is no slash other than my description. The command does not contain a slash.
simply does not work. The problem is presumably some kind of bug in processing under windows.
Try feeding --sketch and --output the full path + a like $file_path/a (poking in the dark here)