diff options
| -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" } |
