diff options
author | 2023-04-04 14:18:12 +0600 | |
---|---|---|
committer | 2023-04-26 17:06:08 +0600 | |
commit | 13be532351fdc16c000ec0ee7d13d323835995e7 (patch) | |
tree | 9ca723fbfad1bda20b5604399078e14ab4fe0546 | |
parent | 5083ae34d95fdafc0ca37d94f448e71d75792115 (diff) | |
download | shopno-os-apt-notifier-13be532351fdc16c000ec0ee7d13d323835995e7.tar.gz shopno-os-apt-notifier-13be532351fdc16c000ec0ee7d13d323835995e7.zip |
Fix broken packages before install
Signed-off-by: Mubashshir <ahm@jadupc.com>
-rwxr-xr-x | data/perform-system-update | 2 | ||||
-rw-r--r-- | debian/changelog | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/data/perform-system-update b/data/perform-system-update index bb7f252..bdc2eb4 100755 --- a/data/perform-system-update +++ b/data/perform-system-update @@ -7,7 +7,7 @@ if [[ $1 == "check" ]]; then fi else echo -e "$(tput setaf 3)Please wait while the system in upgrading...$(tput sgr0)" - + sudo apt --fix-broken install -y sudo apt autoremove -y sudo apt upgrade -y echo -e "$(tput setaf 2)Done! You can now close this window $(tput sgr0)" diff --git a/debian/changelog b/debian/changelog index f40a9b4..e1bef9c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +shopno-os-apt-notifier (1.0.2) shopno; urgency=medium + + * Fix broken packages before install + + -- Mubashshir <ahm@jadupc.com> Tue, 04 Apr 2023 14:28:59 +0600 + shopno-os-apt-notifier (1.0.1) shopno; urgency=medium * Fix negated update logic |