Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unix format on windows for profile.bat #569

Closed
stagrlee opened this issue Oct 17, 2013 · 2 comments
Closed

unix format on windows for profile.bat #569

stagrlee opened this issue Oct 17, 2013 · 2 comments
Labels
Milestone

Comments

@stagrlee
Copy link

profile.bat file needs to have "unix2dos" or similar for the launcher jar before being written to the hard drive when on a windows machine.

I used this to work around the problem

mv .\profile.bat profile.bat.old
Get-Content .\profile.bat.old | % {$_.replace("`n", "`r`n")} | out-file -filepath profile.bat
@stagrlee
Copy link
Author

Looks like all text files are suffering from this issue. You see it when you try to open the files with an editor like notepad

@ahonor ahonor added the cli label Sep 26, 2014
@ahonor ahonor changed the title unix format on windows unix format on windows for profile.bat Sep 26, 2014
@ahonor ahonor added this to the 2.3.0 milestone Sep 26, 2014
@gschueler
Copy link
Member

profile.bat line endings fixed in #953

other files may need to be converted at install time

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants