mirror of
https://gitlab.alpinelinux.org/alpine/abuild.git
synced 2025-03-01 09:50:31 +00:00
abump: add -k option to keep existing built packages
This commit is contained in:
parent
715129c348
commit
624d98d599
11
abump.in
11
abump.in
@ -42,18 +42,23 @@ usage() {
|
||||
echo ""
|
||||
echo " -h show this help"
|
||||
echo " -R run abuild with -R for recursive building"
|
||||
echo " -k keep existing packages"
|
||||
exit 0
|
||||
}
|
||||
|
||||
abuild_opts="-r"
|
||||
while getopts "hR" opt; do
|
||||
keep=
|
||||
recursive="-r"
|
||||
while getopts "hkR" opt; do
|
||||
case $opt in
|
||||
h) usage;;
|
||||
R) abuild_opts="-R";;
|
||||
k) keep="-k";;
|
||||
R) recursive="-R";;
|
||||
esac
|
||||
done
|
||||
shift $(( $OPTIND - 1))
|
||||
|
||||
abuild_opts="$recursive $keep"
|
||||
|
||||
while [ $# -gt 0 ]; do
|
||||
( do_bump "$1" ) || exit 1
|
||||
shift
|
||||
|
Loading…
Reference in New Issue
Block a user