@ -8,8 +8,9 @@ it-pretty:
@chmod +x scripts/init.sh
@scripts/init.sh
it-autonomous:
@echo "soon!"
autonomy:
@chmod +x scripts/fresh-setup.sh
@scripts/fresh-setup.sh
acquisition:
@chmod +x scripts/get-image.sh
@ -41,7 +41,6 @@ install_if_needed() {
echo $package 'already installed!'
fi
done
}
echo "Updating the repositories..."
@ -75,6 +75,17 @@ if [[ ! -z $hostname ]]; then
echo "Hostname configured to $hostname"
read -p "Would you like to copy Alchemy to the new device? (y/n): " -n1 boot
case $boot in
y | Y)
echo ""
echo "zipping and copying..."
zip -r alchemy ./{Makefile,README.md,resources,scripts}
sudo cp alchemy.zip /mnt/usr/share/
echo "done!"
;;
esac
sudo umount ${target}2
sleep 1