Skip to content

Commit 7788979

Browse files
committed
SC2046
1 parent 81be487 commit 7788979

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ci/ios/run-build-and-upload.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
set -eu -o pipefail
1111

1212
# Add SSH key for iOS build VMs to be able to SSH into them without user interaction
13-
eval $(ssh-agent)
13+
eval "$(ssh-agent)"
1414
ssh-add ~/.ssh/ios-vm-key
1515

1616
# This single path really screws with XCode and wireguard-go's makefiles, which

ci/ios/run-in-vm.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ sleep 10
2323

2424
# apparently, there's a difference between piping into zsh like this and doing
2525
# a <(echo $SCRIPT).
26-
cat "$SCRIPT" | ssh admin@$(tart ip "$VM_NAME") bash /dev/stdin
26+
cat "$SCRIPT" | ssh admin@"$(tart ip "$VM_NAME")" bash /dev/stdin
2727
script_status=$?
2828

2929
kill $vm_pid

wireguard/libwg/build-android.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ for arch in ${ARCHITECTURES:-armv7 aarch64 x86_64 i686}; do
4141
esac
4242

4343
# Build Wireguard-Go
44-
echo $(pwd)
44+
echo "$(pwd)"
4545
make -f Android.mk clean
4646
make -f Android.mk
4747

0 commit comments

Comments
 (0)