usr/lib/byobu/custom: fix typo in for loop, LP: #673728, thanks for

the triage Jorge E. Gómez
This commit is contained in:
Dustin Kirkland 2010-11-15 17:51:04 -06:00
commit a8e57ab2b7
2 changed files with 3 additions and 2 deletions

3
debian/changelog vendored
View file

@ -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 <kirkland@ubuntu.com> Fri, 12 Nov 2010 22:45:25 -0600

View file

@ -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}')