Remove unnecessary braces

This commit is contained in:
Matt Hamilton 2015-12-29 11:34:38 -05:00
parent b7977d28f2
commit c5880eab94
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ uninstall those first to prevent conflicts.
```
setopt EXTENDED_GLOB
for template_file ( ${ZDOTDIR:-${HOME}}/.zim/templates/* ); do
user_file="${ZDOTDIR:-${HOME}}/.${${template_file}:t}"
user_file="${ZDOTDIR:-${HOME}}/.${template_file:t}"
( print -n "$(<${template_file})\n$(<${user_file})" >! ${user_file} ) 2>/dev/null
done
```