melawy-archiso-config/04_move.sh

11 lines
139 B
Bash
Executable File

#!/bin/bash
files=$(ls -1 ./out)
if [ -n "$files" ]; then
sudo chown -R 1000:1000 ./out
mv ./out/* ../boot/iso/
fi
echo "Ready"