File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 10
10
set -eu -o pipefail
11
11
12
12
# 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) "
14
14
ssh-add ~ /.ssh/ios-vm-key
15
15
16
16
# This single path really screws with XCode and wireguard-go's makefiles, which
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ sleep 10
23
23
24
24
# apparently, there's a difference between piping into zsh like this and doing
25
25
# 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
27
27
script_status=$?
28
28
29
29
kill $vm_pid
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ for arch in ${ARCHITECTURES:-armv7 aarch64 x86_64 i686}; do
41
41
esac
42
42
43
43
# Build Wireguard-Go
44
- echo $( pwd)
44
+ echo " $( pwd) "
45
45
make -f Android.mk clean
46
46
make -f Android.mk
47
47
You can’t perform that action at this time.
0 commit comments