Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
rc.update: silence warning
  • Loading branch information
wdlkmpx committed Apr 14, 2017
1 parent dd819cb commit 7824b23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion woof-code/rootfs-skeleton/etc/rc.d/rc.update
Expand Up @@ -23,7 +23,7 @@ basic_update() {
echo -n " gtk-icon-cache" >/dev/console
#note, can use --ignore-theme-index if want to...
#'find' routine allows for space in dir name; ie "Puppy Standard". Note: bashism
find /usr/share/icons/* -print0 -maxdepth 0| while read -d $'\0' contents
find /usr/share/icons/* -maxdepth 0 -print0 | while read -d $'\0' contents
do
if [ -d "$contents" ]; then
dir="$contents"
Expand Down

0 comments on commit 7824b23

Please sign in to comment.