Skip to content

Commit cffa875

Browse files
author
Rafał Harabień
committed
Make create-test-img.sh more portable.
1 parent 9d3780f commit cffa875

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/create-test-img.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22
OUT_DIR=../resources
33
set -e
44

@@ -10,7 +10,7 @@ create_test_img() {
1010
mkfs.vfat -s 1 -F $fatSize -n "Test!" -i 12345678 "$name"
1111
mkdir -p mnt
1212
sudo mount -o loop "$name" mnt -o rw,uid=$USER,gid=$USER
13-
for i in {1..1000}; do
13+
for i in $(seq 1 1000); do
1414
echo "Rust is cool!" >>"mnt/long.txt"
1515
done
1616
echo "Rust is cool!" >>"mnt/short.txt"

0 commit comments

Comments
 (0)