Browse Source

Rename $dump_file to $zcompdump

master
Sorin Ionescu 12 years ago
parent
commit
57e0f4ecef
  1. 6
      runcoms/zlogin

6
runcoms/zlogin

@ -8,9 +8,9 @@ @@ -8,9 +8,9 @@
# Execute code that does not affect the current session in the background.
{
# Compile the completion dump to increase startup speed.
dump_file="$HOME/.zcompdump"
if [[ "$dump_file" -nt "${dump_file}.zwc" || ! -s "${dump_file}.zwc" ]]; then
zcompile "$dump_file"
zcompdump="$HOME/.zcompdump"
if [[ "$zcompdump" -nt "${zcompdump}.zwc" || ! -s "${zcompdump}.zwc" ]]; then
zcompile "$zcompdump"
fi
# Set environment variables for launchd processes.

Loading…
Cancel
Save