From 938fec3e46736e1c4d43a40a119080b017034e4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Mon, 10 Jun 2019 19:02:49 +0200 Subject: [PATCH] Use "next" instead of "latest" --- scripts/installer.sh | 2 +- scripts/ligo.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/installer.sh b/scripts/installer.sh index e772c19e2..c8623c6a7 100755 --- a/scripts/installer.sh +++ b/scripts/installer.sh @@ -63,7 +63,7 @@ else # ) || clean up temporary file if any command in the previous block failed wget "$url" -O - \ - | sed -e "s/latest/$version/g" \ + | sed -e "s/next/$version/g" \ | sudo sh -c ' \ ( \ rm -f /usr/local/bin/.temp.ligo.before-atomic-move \ diff --git a/scripts/ligo.sh b/scripts/ligo.sh index 9e4020b79..d0f9725d1 100755 --- a/scripts/ligo.sh +++ b/scripts/ligo.sh @@ -4,7 +4,7 @@ if [ test "x$PWD" = "x" ]; then echo "Cannot detect the current directory, the environment variable PWD is empty." exit 1 else - docker run -it -v "$PWD":"$PWD" -w "$PWD" ligolang/ligo:latest "$@" + docker run -it -v "$PWD":"$PWD" -w "$PWD" ligolang/ligo:next "$@" 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. # END OF DOWNLOADED FILE