From 0c756a4a46502fbe45691dc537356b9b2c47d676 Mon Sep 17 00:00:00 2001 From: Rodrigo Quelhas Date: Sat, 28 Sep 2019 15:42:50 +0000 Subject: [PATCH] Adding `--rm` to ligo.sh --- scripts/ligo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ligo.sh b/scripts/ligo.sh index 236ebe98f..e780f3b53 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:next "$@" + docker run --rm -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