From 48d41afb7340242c0a002d4393b8460c6013ff1b Mon Sep 17 00:00:00 2001 From: Dino Korah Date: Sat, 27 May 2023 16:11:57 +0100 Subject: [PATCH 1/2] Update build.sh * Updates version to v9.0.1582 * Use curl to download * Untar the tarball on-the-fly * Use upx to compress the binary (saves ~50% binary size) * Adds some comments & breaks long lines --- build.sh | 40 +++++++++++++++++++++++++++++++++------- 1 file changed, 33 insertions(+), 7 deletions(-) diff --git a/build.sh b/build.sh index adbb20b..90bc0d8 100755 --- a/build.sh +++ b/build.sh @@ -1,15 +1,41 @@ #!/bin/bash -docker run -i --rm -v "$PWD":/out -w /root alpine /bin/sh < Date: Sat, 27 May 2023 15:15:42 +0000 Subject: [PATCH 2/2] Fix alpine docker image to v3.18 --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 90bc0d8..f26f889 100755 --- a/build.sh +++ b/build.sh @@ -1,6 +1,6 @@ #!/bin/bash -docker run -i --rm -e vim_version=9.0.1582 -v "$PWD":/out -w /root alpine /bin/sh <