mirror of
https://github.com/zuno/slackpkgplus
synced 2025-01-13 20:01:04 +01:00
Fix exit code for pending updates (slackpkg 15.0.1)
This commit is contained in:
parent
f3f289c618
commit
f3abb1b59e
1 changed files with 2 additions and 1 deletions
|
@ -144,7 +144,7 @@ if [ "$SLACKPKGPLUS" = "on" ];then
|
|||
# Get the current exit-code so that we can check if cleanup is
|
||||
# called in response of a CTRL+C (ie. $?=130) or not.
|
||||
local lEcode=$?
|
||||
local retval=0
|
||||
local retval=${PENDING_UPDATES:-0}
|
||||
|
||||
if [ "$CMD" == "info" ];then
|
||||
DETAILED_INFO=${DETAILED_INFO:-none}
|
||||
|
@ -2269,6 +2269,7 @@ if [ "$SLACKPKGPLUS" = "on" ];then
|
|||
|
||||
if $UPDATES ; then
|
||||
echo "Slackpkg: Updated packages are available since last check." >&2
|
||||
PENDING_UPDATES=1
|
||||
|
||||
printf "\n [ %-24s ] [ %-20s ]\n" "Repository" "Status"
|
||||
|
||||
|
|
Loading…
Reference in a new issue