fix: Quote paths to prevent globbing and word splitting (#82)

This commit is contained in:
Edwin Kofler
2023-12-03 18:26:17 -08:00
committed by GitHub
parent c2ccbc2771
commit 81ad0d2ded
3 changed files with 31 additions and 31 deletions

View File

@@ -44,7 +44,7 @@ make
# verify no external shared library links
libcheck fio
# copy fio binary to mounted dir
cp fio /io/fio_$ARCH
cp fio "/io/fio_$ARCH"
# download and compile iperf
cd ~
@@ -57,4 +57,4 @@ make
# verify no external shared library links
libcheck src/iperf3
# copy iperf binary to mounted dir
cp src/iperf3 /io/iperf3_$ARCH
cp src/iperf3 "/io/iperf3_$ARCH"