diff --git a/debian/changelog b/debian/changelog index fbb45586..b8011727 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ byobu (3.10) unreleased; urgency=low - * UNRELEASED + * usr/lib/byobu/custom: fix typo in for loop, LP: #673728, thanks for + the triage Jorge E. Gómez -- Dustin Kirkland Fri, 12 Nov 2010 22:45:25 -0600 diff --git a/usr/lib/byobu/custom b/usr/lib/byobu/custom index 26258176..6960b302 100755 --- a/usr/lib/byobu/custom +++ b/usr/lib/byobu/custom @@ -28,7 +28,7 @@ NOW=$(date +%s) CACHE="$DIR/$PKG.custom" # Loop over custom scripts -for i in "$DATA/bin/[0-9]*_*; do +for i in "$DATA/bin/"[0-9]*_*; do [ -x "$i" ] || continue script=$(basename "$i") freq=$(echo "$script" | awk -F_ '{print $1}')