From f7f06d05c90ae4c395c54056fb89ca4fc7a46c34 Mon Sep 17 00:00:00 2001 From: Aaron Rainbolt Date: Thu, 2 Feb 2023 11:47:08 -0600 Subject: [PATCH] Changed some strings and fixed a typo in the autopkgtest tweak --- debian/changelog | 6 ++++++ debian/tests/run-tests | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index b8c281b..8d17841 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Thu, 02 Feb 2023 11:45:32 -0600 + lubuntu-update-notifier (0.5.2) lunar; urgency=medium * Tweaked the autopkgtest script to return more detailed debugging info. diff --git a/debian/tests/run-tests b/debian/tests/run-tests index 35ff625..9d45544 100755 --- a/debian/tests/run-tests +++ b/debian/tests/run-tests @@ -18,14 +18,14 @@ done IFS=$oldIFS if [ $UPG -ge 0 ]; then echo "Success: /usr/lib/update-notifier/apt-check is working" - echo "Debugging output >>>" + echo "Debugging output:" echo $OUT; - echo "<<< End debugging output + echo "End debugging output" exit 0 else echo "Failure: /usr/lib/update-notifier/apt-check is NOT working" - echo "Debugging output >>>" + echo "Debugging output:" echo $OUT; - echo "<<< End debugging output" + echo "End debugging output" exit 1 fi