mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-21 14:03:18 -07:00
usr/lib/byobu/custom: fix typo in for loop, LP: #673728, thanks for
the triage Jorge E. Gómez
This commit is contained in:
parent
de041e805d
commit
a8e57ab2b7
2 changed files with 3 additions and 2 deletions
3
debian/changelog
vendored
3
debian/changelog
vendored
|
@ -1,6 +1,7 @@
|
||||||
byobu (3.10) unreleased; urgency=low
|
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
|
-- Dustin Kirkland <kirkland@ubuntu.com> Fri, 12 Nov 2010 22:45:25 -0600
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@ NOW=$(date +%s)
|
||||||
CACHE="$DIR/$PKG.custom"
|
CACHE="$DIR/$PKG.custom"
|
||||||
|
|
||||||
# Loop over custom scripts
|
# Loop over custom scripts
|
||||||
for i in "$DATA/bin/[0-9]*_*; do
|
for i in "$DATA/bin/"[0-9]*_*; do
|
||||||
[ -x "$i" ] || continue
|
[ -x "$i" ] || continue
|
||||||
script=$(basename "$i")
|
script=$(basename "$i")
|
||||||
freq=$(echo "$script" | awk -F_ '{print $1}')
|
freq=$(echo "$script" | awk -F_ '{print $1}')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue