Bugfix: parameters for "autoremove" function (Thanks, mrDSide,

for reporting this issue.)
This commit is contained in:
Your Name 2019-05-13 15:57:40 +02:00
parent b25763bf6b
commit 3c729dd338
1 changed files with 3 additions and 3 deletions

6
vpm
View File

@ -516,10 +516,10 @@ case "$arg" in
autoremove|ar)
shift
rootcheck
msg "autoremove: Removing orphaned packages (xbps-remove -v -Q)"
xbps-remove -v -O
msg "autoremove: Removing orphaned packages (xbps-remove -v -o)"
xbps-remove -v -o
ret=$?
rmsg "$ret" "[xbps-remove -v -O] return code: $ret"
rmsg "$ret" "[xbps-remove -v -o] return code: $ret"
;;
update|upgrade|up)