fix: Quote paths to prevent globbing and word splitting

This commit is contained in:
Edwin Kofler 2023-12-03 17:11:42 -08:00
commit 78c12b39cc
No known key found for this signature in database
GPG key ID: A1E60C1F1A423B08
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"