You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The robocodeDownload task also adds the robots\bin to the robocode development path. Generally great, just this does not work on windows. The buildDir under windows uses single backslashes (e.g., C:\MyDoc\MyProject/robocode/robots/bin). Robocode interprets these as escape characters, which leads to some IOExceptions when starting robocode and robocode not detecting the robots. That is, the development path must use double backslashes under windows (e.g., C:\\MyDoc\\MyProject\\robocode\\robots\\bin). I would expect the download task to add the correcly escaped development path even under windows.
Note: Tested for 0.1.1, but as far as I can tell the error should exist on 0.2.0 as well, the code did not chance.
The text was updated successfully, but these errors were encountered:
The
robocodeDownload
task also adds therobots\bin
to the robocode development path. Generally great, just this does not work on windows. ThebuildDir
under windows uses single backslashes (e.g.,C:\MyDoc\MyProject/robocode/robots/bin
). Robocode interprets these as escape characters, which leads to some IOExceptions when starting robocode and robocode not detecting the robots. That is, the development path must use double backslashes under windows (e.g.,C:\\MyDoc\\MyProject\\robocode\\robots\\bin
). I would expect the download task to add the correcly escaped development path even under windows.Note: Tested for 0.1.1, but as far as I can tell the error should exist on 0.2.0 as well, the code did not chance.
The text was updated successfully, but these errors were encountered: