pluto/fat32_cp.sh
DrDeano f87f66a37f
Fixed FAT32 tests
Git workflow changed to run on any push
Mount in utf8 so copies files unicode filenames correctly
Renamed large_file2 to large_file
2020-12-27 13:31:07 +00:00

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