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
{{ message }}
This repository has been archived by the owner on Apr 25, 2021. It is now read-only.
BSD sed interprets sed 's/\r//' as "replace the literal letter r". A more compatible approach delegates the interpretation of this sequence to bash.
Fixessbt#186
The logic on the following line only works with GNU sed variants, but breaks horribly on Darwin variants.
sbt-launcher-package/src/universal/bin/sbt
Line 140 in c0b961c
Observe:
OS X (BSD sed)
Linux (GNU sed)
BSD removes the last r from all lines that end in the letter
r
.Different approach
We can use pass the literal "\r" character to sed. This seems to work:
OS X (BSD sed)
Linux (GNU sed)
The text was updated successfully, but these errors were encountered: