.dotfiles/.bin/sh/build.sh
2025-03-24 12:47:13 -04:00

13 lines
175 B
Bash
Executable file

#!/bin/sh
# Build package and prompt for cleaning
{
makepkg -si;
read -p "Clean leftover files? [y/n]:" -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]
then
git clean -dxfi
fi
}