From a9f73f59f0112ce794d062313d6793d5543f9961 Mon Sep 17 00:00:00 2001 From: Lucas Kent Date: Thu, 5 Dec 2024 10:36:54 +1100 Subject: [PATCH] Fix binary release --- shotover-proxy/build/build_release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shotover-proxy/build/build_release.sh b/shotover-proxy/build/build_release.sh index cc5164d3e..21ec0eea9 100755 --- a/shotover-proxy/build/build_release.sh +++ b/shotover-proxy/build/build_release.sh @@ -15,6 +15,6 @@ cp -r ../config shotover # extract the crate version from Cargo.toml CRATE_VERSION="$(cargo metadata --format-version 1 --offline --no-deps | jq -c -M -r '.packages[] | select(.name == "shotover-proxy") | .version')" tar -cvzf out.tar.gz shotover -mv out.tar.gz shotover-proxy-linux_amd64-${CRATE_VERSION}.tar.gz +mv out.tar.gz ../../shotover-proxy-linux_amd64-${CRATE_VERSION}.tar.gz rm -rf shotover