diff options
-rwxr-xr-x | install | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/install b/install index 530e7a3e..d3eaf06a 100755 --- a/install +++ b/install @@ -10,14 +10,14 @@ then mkdir -pv $target fi -if [[ -d ~/Library/LaunchAgents ]] +if [[ ! -d $target && ${(L)host} =~ prefect ]] then - ln -sf $target/launchagents/* ~/Library/LaunchAgents + git clone git://github.com/alanpearce/dotfiles.git $target fi -if [[ ! -d $target && ${(L)host} =~ prefect ]] +if [[ -d ~/Library/LaunchAgents ]] then - git clone git://github.com/alanpearce/dotfiles.git $target + ln -sf $target/launchagents/* ~/Library/LaunchAgents fi install-dot () { |