From 11fa561c3e9e61a2fadb7a12d29b25cf441d5009 Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Thu, 28 Jul 2022 16:31:27 -0700 Subject: [PATCH] Rename the generated binary before compressing --- .ci/build.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.ci/build.sh b/.ci/build.sh index 0d6174b39..b63d38ed4 100755 --- a/.ci/build.sh +++ b/.ci/build.sh @@ -26,6 +26,12 @@ wrap git submodule update --init --recursive \ # Build our binary wrap make \ "Failed to build the Vagrant go binary" + +# Rename our binary +wrap mv vagrant vagrant-go \ + "Failed to rename vagrant binary" + +# Zip the binary wrap zip vagrant-go vagrant-go \ "Failed to compress go binary"