summaryrefslogtreecommitdiffhomepage
path: root/test/scripts
diff options
context:
space:
mode:
authorSebastian Holmin <sebastian.holmin@mullvad.net>2024-07-19 10:41:54 +0200
committerSebastian Holmin <sebastian.holmin@mullvad.net>2024-07-19 14:22:33 +0200
commitafe6733c0ca5ae99fa7d5aeaf634c9da5bf4f838 (patch)
tree056892955e1ca7c7b7b318f2ca298e910a97da4b /test/scripts
parent0dd261c6bc2667f15edd818bb3892f3f71ffdcaf (diff)
downloadmullvadvpn-afe6733c0ca5ae99fa7d5aeaf634c9da5bf4f838.tar.xz
mullvadvpn-afe6733c0ca5ae99fa7d5aeaf634c9da5bf4f838.zip
Rename `--current-app` to `--app-package`
Diffstat (limited to 'test/scripts')
-rw-r--r--test/scripts/ssh-setup.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/scripts/ssh-setup.sh b/test/scripts/ssh-setup.sh
index b3d358f5a0..7eb8ab56d3 100644
--- a/test/scripts/ssh-setup.sh
+++ b/test/scripts/ssh-setup.sh
@@ -6,7 +6,7 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "$SCRIPT_DIR"
RUNNER_DIR="$1"
-CURRENT_APP="$2"
+APP_PACKAGE="$2"
PREVIOUS_APP="$3"
UI_RUNNER="$4"
@@ -16,7 +16,7 @@ echo "Copying test-runner to $RUNNER_DIR"
mkdir -p "$RUNNER_DIR"
-for file in test-runner connection-checker $CURRENT_APP $PREVIOUS_APP $UI_RUNNER openvpn.ca.crt; do
+for file in test-runner connection-checker $APP_PACKAGE $PREVIOUS_APP $UI_RUNNER openvpn.ca.crt; do
echo "Moving $file to $RUNNER_DIR"
cp -f "$SCRIPT_DIR/$file" "$RUNNER_DIR"
done