1
0
Fork 0
.dotfiles/.dot-files-laptop/.bin/sh/pkgb.sh
2025-04-16 21:03:05 -04:00

13 lines
154 B
Bash
Executable file

#!/bin/sh
#Check PKGBUILD file
{
less PKGBUILD;
read -p "Build package? [y/n]:" -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]
then
~/.bin/sh/build.sh
fi
}