mirror of
https://github.com/masonr/yet-another-bench-script.git
synced 2025-11-06 07:41:30 +05:30
fix: Quote paths to prevent globbing and word splitting (#82)
This commit is contained in:
parent
c2ccbc2771
commit
81ad0d2ded
3 changed files with 31 additions and 31 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue