f87f66a37f
Git workflow changed to run on any push Mount in utf8 so copies files unicode filenames correctly Renamed large_file2 to large_file
9 lines
218 B
Bash
Executable file
9 lines
218 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
IMAGE_PATH_DIR=$1
|
|
|
|
mkdir test/fat32/mnt
|
|
sudo mount -o utf8=true $IMAGE_PATH_DIR test/fat32/mnt/
|
|
sudo cp -r test/fat32/test_files/. test/fat32/mnt/
|
|
sudo umount test/fat32/mnt/
|
|
rm -rf test/fat32/mnt
|