Navigation Menu

Skip to content

Commit

Permalink
Use tab itself instead of "\t"
Browse files Browse the repository at this point in the history
Because echo in bash doesn't expand "\t" to a tab without "-e" option.
  • Loading branch information
kou committed Jun 10, 2013
1 parent 52ec252 commit 85b4356
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data/images/logo/update-files.sh
Expand Up @@ -8,7 +8,7 @@ list_paths()
sed \
-e 's,^,\t,' \
-e 's,$, \\,'
echo "\t\$(NULL)"
echo " \$(NULL)"
echo
}

Expand Down
2 changes: 1 addition & 1 deletion doc/update-files.sh
Expand Up @@ -8,7 +8,7 @@ list_paths()
sed \
-e 's,^,\t,' \
-e 's,$, \\,'
echo "\t\$(NULL)"
echo " \$(NULL)"
echo
}

Expand Down

0 comments on commit 85b4356

Please sign in to comment.