mirror of
https://github.com/sbopkg/sbopkg
synced 2024-11-09 19:50:25 +03:00
revert last commit; after further thought, I'm not sure we want to automatically proceed with a build without confirming first. Perhaps a new flag for bulk builds or something can be added in the future.
This commit is contained in:
parent
a6112368f7
commit
4d8610a95b
@ -3906,24 +3906,22 @@ process_queue() {
|
||||
echo
|
||||
echo "Pre-check complete."
|
||||
echo
|
||||
if [[ ! $QUIET ]]; then
|
||||
crunch_fmt "Do you wish to proceed based on the search \
|
||||
results above? Packages not found will be skipped during \
|
||||
the process."
|
||||
echo
|
||||
while :; do
|
||||
read $NFLAG -ep "(P)roceed or (Q)uit?: "
|
||||
case $REPLY in
|
||||
P|p) break ;;
|
||||
Q|q)
|
||||
rm -f $PKGPATH/$CHKBUILD.{info,SlackBuild}.build
|
||||
rm -f $PKGPATH/options.build
|
||||
return 0
|
||||
;;
|
||||
*) unknown_response ;;
|
||||
esac
|
||||
done
|
||||
fi
|
||||
crunch_fmt "Do you wish to proceed based on the search \
|
||||
results above? Packages not found will be skipped during \
|
||||
the process."
|
||||
echo
|
||||
while :; do
|
||||
read $NFLAG -ep "(P)roceed or (Q)uit?: "
|
||||
case $REPLY in
|
||||
P|p) break ;;
|
||||
Q|q)
|
||||
rm -f $PKGPATH/$CHKBUILD.{info,SlackBuild}.build
|
||||
rm -f $PKGPATH/options.build
|
||||
return 0
|
||||
;;
|
||||
*) unknown_response ;;
|
||||
esac
|
||||
done
|
||||
echo
|
||||
fi
|
||||
if [[ $KEEPLOG ]]; then
|
||||
|
Loading…
Reference in New Issue
Block a user