Merge branch 'feature/nocrlf' into 'dev'

Stop using docker `-it` to avoid spurious CRLF

See merge request ligolang/ligo!226
This commit is contained in:
Suzanne Dupéron 2019-11-28 09:54:49 +00:00
commit 16a2d76e66

View File

@ -4,7 +4,7 @@ if test "x$PWD" = "x"; then
echo "Cannot detect the current directory, the environment variable PWD is empty." echo "Cannot detect the current directory, the environment variable PWD is empty."
exit 1 exit 1
else else
docker run --rm -it -v "$PWD":"$PWD" -w "$PWD" ligolang/ligo:next "$@" docker run --rm -v "$PWD":"$PWD" -w "$PWD" ligolang/ligo:next "$@"
fi fi
# Do not remove the next line. It is used as an approximate witness that the download of this file was complete. This string should not appear anywhere else in the file. # Do not remove the next line. It is used as an approximate witness that the download of this file was complete. This string should not appear anywhere else in the file.
# END OF DOWNLOADED FILE # END OF DOWNLOADED FILE