From: Peng Li Date: Sun, 19 Feb 2017 07:47:45 +0000 (+0800) Subject: zsh - fix submodules X-Git-Url: http://47.100.26.94:8080/?a=commitdiff_plain;h=42048a898b35c073fdf4875bdd4a8517983b4721;hp=1985bb11c1859b38e5596953194e17b84693f23a;p=dotfiles.git zsh - fix submodules --- diff --git a/zsh/install.pl b/zsh/install.pl index 1aac9dd..73b5e47 100755 --- a/zsh/install.pl +++ b/zsh/install.pl @@ -14,5 +14,18 @@ die "~/.zsh or ~/.zshrc exist. Backup them first.\n" if -e "$home/.zsh" or -e "$ print `ln -s $zshDir $home/.zsh`; print `ln -s $zshrc $home/.zshrc`; +my $zshsyntaxDir = $zshDir . "plugins/zsh-syntax-highlighting"; + +if (not -e $zshsyntaxDir) { + die "zsh syntax highlighting not exist, abort.\n"; +} elsif (-s $zshsyntaxDir) { + print " clone submoduells\n "; + chdir $zshsyntaxDir; + ! system "git submodule init" or die $!; + ! system "git submodule update" or die $!; +} else { + print "zsh syntax submodule already exists.\n"; +} + print "Done\n" unless $?;