Changed some strings and fixed a typo in the autopkgtest tweak

This commit is contained in:
Aaron Rainbolt 2023-02-02 11:47:08 -06:00
parent 46bece00eb
commit f7f06d05c9
2 changed files with 10 additions and 4 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
lubuntu-update-notifier (0.5.3) lunar; urgency=medium
* Changed some strings and fixed a typo in the autopkgtest tweak
-- Aaron Rainbolt <arraybolt3@ubuntu.com> Thu, 02 Feb 2023 11:45:32 -0600
lubuntu-update-notifier (0.5.2) lunar; urgency=medium lubuntu-update-notifier (0.5.2) lunar; urgency=medium
* Tweaked the autopkgtest script to return more detailed debugging info. * Tweaked the autopkgtest script to return more detailed debugging info.

View File

@ -18,14 +18,14 @@ done
IFS=$oldIFS IFS=$oldIFS
if [ $UPG -ge 0 ]; then if [ $UPG -ge 0 ]; then
echo "Success: /usr/lib/update-notifier/apt-check is working" echo "Success: /usr/lib/update-notifier/apt-check is working"
echo "Debugging output >>>" echo "Debugging output:"
echo $OUT; echo $OUT;
echo "<<< End debugging output echo "End debugging output"
exit 0 exit 0
else else
echo "Failure: /usr/lib/update-notifier/apt-check is NOT working" echo "Failure: /usr/lib/update-notifier/apt-check is NOT working"
echo "Debugging output >>>" echo "Debugging output:"
echo $OUT; echo $OUT;
echo "<<< End debugging output" echo "End debugging output"
exit 1 exit 1
fi fi