summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAlbin <albin@mullvad.net>2022-10-19 14:13:23 +0200
committerAlbin <albin@mullvad.net>2022-10-20 09:01:35 +0200
commita146a174dd1d33443dff7cb66f2712fd64a4b049 (patch)
tree4ad1cd9e80b0a31994d1b9e5a5488320226aa8dc
parent847cd35c2249dbc668eadb80436ef60e0bc85a7a (diff)
downloadmullvadvpn-a146a174dd1d33443dff7cb66f2712fd64a4b049.tar.xz
mullvadvpn-a146a174dd1d33443dff7cb66f2712fd64a4b049.zip
Print version feedback in desktop build script
-rwxr-xr-xbuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index 5eb8ba69f8..6d8d9a6336 100755
--- a/build.sh
+++ b/build.sh
@@ -17,7 +17,9 @@ source scripts/utils/log
RUSTC_VERSION=$(rustc --version)
CARGO_TARGET_DIR=${CARGO_TARGET_DIR:-"target"}
+echo "Computing build version..."
PRODUCT_VERSION=$(cargo run -q --bin mullvad-version)
+log_header "Building Mullvad VPN $PRODUCT_VERSION"
# If compiler optimization and artifact compression should be turned on or not
OPTIMIZE="false"
@@ -151,8 +153,6 @@ fi
# Compile and build
################################################################################
-log_header "Building Mullvad VPN $PRODUCT_VERSION"
-
# Sign all binaries passed as arguments to this function
function sign_win {
local NUM_RETRIES=3