diff options
| author | Tobias Järvelöv <tobias.jarvelov@mullvad.net> | 2025-03-21 16:58:51 +0100 |
|---|---|---|
| committer | Markus Pettersson <markus.pettersson@mullvad.net> | 2025-04-24 10:16:21 +0200 |
| commit | 9159040963c2d4d94adcaf3a1b6bd6ddbfdb438c (patch) | |
| tree | 4311cc2fa862cfcdc7c4f73f0cc679bc736a91b2 | |
| parent | 25e7a4e3eabff0bd5e5a83bdb0c8ad635126998e (diff) | |
| download | mullvadvpn-9159040963c2d4d94adcaf3a1b6bd6ddbfdb438c.tar.xz mullvadvpn-9159040963c2d4d94adcaf3a1b6bd6ddbfdb438c.zip | |
Print the name of the produced test executable when completed
| -rwxr-xr-x | desktop/packages/mullvad-vpn/scripts/build-test-executable.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/desktop/packages/mullvad-vpn/scripts/build-test-executable.sh b/desktop/packages/mullvad-vpn/scripts/build-test-executable.sh index fe67304c2f..9dd6f26b03 100755 --- a/desktop/packages/mullvad-vpn/scripts/build-test-executable.sh +++ b/desktop/packages/mullvad-vpn/scripts/build-test-executable.sh @@ -32,7 +32,8 @@ function build_test_executable { local temp_dir temp_dir="$(mktemp -d)" local temp_executable="$temp_dir/temp-test-executable$bin_suffix" - local output="../../../dist/app-e2e-tests-$PRODUCT_VERSION-$TARGET$bin_suffix" + local output_name="app-e2e-tests-$PRODUCT_VERSION-$TARGET$bin_suffix" + local output="../../../dist/$output_name" local node_copy_path="$temp_dir/node$bin_suffix" local node_path node_path="$(volta which node || which node)" @@ -62,6 +63,7 @@ function build_test_executable { mkdir -p "$(dirname "$output")" mv "$temp_executable" "$output" + echo "Test executable created: $output_name" rm -rf "$temp_dir" } |
