bin/homedir-setup

changeset 461
d5abcf2b7365
parent 459
efa21f0b1dca
child 482
2c7cb331d2dc
--- a/bin/homedir-setup
+++ b/bin/homedir-setup
@@ -17,28 +17,28 @@ pull() {
 }
 
 if ! [ -d .zgen ]; then
-  git clone https://github.com/tarjoilija/zgen.git .zgen
+  git clone 'https://github.com/tarjoilija/zgen.git' .zgen
 else
   pull .zgen
 fi
 
 if ! [ -d .plenv ]; then
-  git clone https://github.com/tokuhirom/plenv.git .plenv
-  git clone https://github.com/tokuhirom/Perl-Build.git .plenv/plugins/perl-build/
+  git clone 'https://github.com/tokuhirom/plenv.git' .plenv
+  git clone 'https://github.com/tokuhirom/Perl-Build.git' .plenv/plugins/perl-build/
 else
   pull .plenv
   pull .plenv/plugins/perl-build
 fi
 
 if ! [ -d .asdf ]; then
-  git clone https://github.com/asdf-vm/asdf .asdf
+  git clone 'https://github.com/asdf-vm/asdf' .asdf
 else
   pull .asdf
 fi
 
 for LANG in ruby nodejs erlang elixir; do
   if ! [ -d .asdf/plugins/$LANG ]; then
-    git clone https://github.com/asdf-vm/asdf-$LANG .asdf/plugins/$LANG
+    git clone "https://github.com/asdf-vm/asdf-$LANG" .asdf/plugins/$LANG
   else
     pull .asdf/plugins/$LANG
   fi

mercurial