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
Download, install dependencies, run make, get these errors:
./LASTPASS-VERSION-GEN: line 2: $'\r': command not found
./LASTPASS-VERSION-GEN: line 5: $'\r': command not found
./LASTPASS-VERSION-GEN: line 8: $'\r': command not found
./LASTPASS-VERSION-GEN: line 11: $'\r': command not found
./LASTPASS-VERSION-GEN: line 17: syntax error near unexpected token `elif'
'/LASTPASS-VERSION-GEN: line 17: `elif test -d ${GIT_DIR:-.git} -o -f .git &&
And as a result, there's no version.h file. :(
The issue: windows-style CRLF's in the files.
Workaround: remove the CR's (be sure the file is still executable!), run make clean then make. (sed 's/\r//' is your friend :) )
The text was updated successfully, but these errors were encountered:
Download, install dependencies, run make, get these errors:
And as a result, there's no version.h file. :(
The issue: windows-style CRLF's in the files.
Workaround: remove the CR's (be sure the file is still executable!), run make clean then make. (
sed 's/\r//'
is your friend :) )The text was updated successfully, but these errors were encountered: