mirror of
https://github.com/sbopkg/sbopkg
synced 2024-12-29 10:24:11 +01:00
Fix installed packages list not shown with no packages installed.
Signed-off-by: Mauro Giachero <mauro.giachero@gmail.com>
This commit is contained in:
parent
82acea8919
commit
42d33db44b
1 changed files with 11 additions and 3 deletions
|
@ -316,10 +316,18 @@ get_sbo_packages() {
|
|||
for FILE in $PKGS; do
|
||||
echo $FILE >> $SBOPKGLIST
|
||||
done
|
||||
if [[ $DIAG ]]; then
|
||||
dialog --title "Installed SBo Packages" --textbox $SBOPKGLIST 20 65
|
||||
if [[ -f $SBOPKGLIST ]]; then
|
||||
if [[ $DIAG ]]; then
|
||||
dialog --title "Installed SBo Packages" --textbox $SBOPKGLIST \
|
||||
20 65
|
||||
else
|
||||
${PAGER:-more} $SBOPKGLIST
|
||||
fi
|
||||
else
|
||||
${PAGER:-more} $SBOPKGLIST
|
||||
if [[ $DIAG ]]; then
|
||||
dialog --title "No packages found" --msgbox "$(crunch_fmt "It \
|
||||
appears that you have no SBo packages installed.")" 8 40
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue