1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-22 13:50:09 +00:00

Fix whitespace

That's what I get for using GitHub text editor and not checking tabs.
This commit is contained in:
Ryan Winograd 2013-03-13 22:51:12 -05:00
parent 1cfd813f79
commit 4c8bba57ac

View file

@ -9,7 +9,7 @@ local cache_file="$ZSH/cache/last-working-dir"
# Updates the last directory once directory is changed. # Updates the last directory once directory is changed.
function chpwd() { function chpwd() {
# Use >! in case noclobber is set to avoid "file exists" error # Use >! in case noclobber is set to avoid "file exists" error
echo "$PWD" >! "$cache_file" echo "$PWD" >! "$cache_file"
} }