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