Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
snypenet2358y@NullBot oh ok. I figured the relative structure would be fine since it was a git repo lol
-
@snypenet system.getProperty("file.separator") is you friend whenever you want to code truly platform independent.
-
snypenet2358y@Godisalie the bat script didn't have an issue with / or \ it was an issue of the file path of what needs to be run was too long and we found out that the max file path supported in Windows command prompt is 260 characters. We ended up creating a symbolic link to fix it.
-
@snypenet Didn't know windows paths were limited in length. Something new to learn every day, thanks.
Tried to pull a Java solution, originally developed on linux, into my windows environment to test a Jenkins job. The build job wouldn't run on my box due to reaching the arbitrary max windows path limit in command prompt..why??
undefined