diff options
author | Alan Pearce | 2014-04-13 09:27:36 +0100 |
---|---|---|
committer | Alan Pearce | 2014-04-13 09:27:36 +0100 |
commit | 92192895ef1305f17cfd8206539f3662b4340944 (patch) | |
tree | 105b627f4cc7de22b07750daa3798608a201e06d /hooks | |
parent | 84a8dcddbb59c66b1f9d6c68f0612f41a034618d (diff) | |
download | nixfiles-92192895ef1305f17cfd8206539f3662b4340944.tar.lz nixfiles-92192895ef1305f17cfd8206539f3662b4340944.tar.zst nixfiles-92192895ef1305f17cfd8206539f3662b4340944.zip |
Fix syntax error in zsh post-up hook
Diffstat (limited to 'hooks')
-rwxr-xr-x | hooks/post-up/zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hooks/post-up/zsh b/hooks/post-up/zsh index 7ed08de4..085240df 100755 --- a/hooks/post-up/zsh +++ b/hooks/post-up/zsh @@ -1,5 +1,5 @@ #!/usr/bin/env zsh -ZDOTDIR="${XDG_CONFIG_HOME:~/.config}/zsh" +ZDOTDIR="${XDG_CONFIG_HOME:=~/.config}/zsh" pushd $ZDOTDIR for f in z*(-.) |