david/myzsh
david
/
myzsh
Archived
1
0
Fork 0

autopush by david@ghost

This commit is contained in:
david 2017-10-03 22:45:55 +02:00
parent 383c18f0c7
commit fcd0c174a9
1 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ installmyzsh()
choice="null"
while [ $choice != "y" ] && [ $choice != "n" ]; do
read -p "[myzsh]: should i clone myzsh writeable? [y/n]" choice
if [ $choice == "y" ]; then
if [ "$choice" == "y" ]; then
git clone git@socialg.it:david/myzsh.git ~/.myzsh
else
git clone https://socialg.it/david/myzsh.git ~/.myzsh
@ -90,7 +90,7 @@ if [ -d ~/.myzsh ]; then
choice="null"
echo "[myzsh]: it seems i have already been set up."
read -p "[myzsh]: should i cleanup & reinstall? [y/n]" choice
if [ $choice == "y" ]; then
if [ "$choice" == "y" ]; then
installdeps
installmyzsh
else