Added flag to build.sh

This commit is contained in:
Stephen Cochrane 2021-07-27 16:15:32 +02:00
parent f891299162
commit 73c476fcb4
1 changed files with 7 additions and 4 deletions

View File

@ -41,7 +41,7 @@ conv () {
}
main() {
while getopts "dqw" opt
while getopts "dqwp" opt
do
case $opt in
d)
@ -50,6 +50,9 @@ main () {
q)
quote=false
;;
p)
git pull # Pull before building, potentially highly scuffed lmao
;;
*)
exit 2
;;