2
0
mirror of https://github.com/ComradCollective/Comrad synced 2024-11-03 23:15:33 +00:00
This commit is contained in:
quadrismegistus 2020-09-14 19:49:14 +01:00
parent 8d4875d708
commit 2ce8d35427

View File

@ -50,7 +50,17 @@ then
git pull
else
cd $path_komrade
git clone https://github.com/Komrade/Komrade.git
echo "Use HTTPS or SSH for git?"
read -p "[HTPS/ssh] " git_method
if [ git_method=="ssh" ]
then
echo "using ssh..."
git clone git@github.com:Komrade/Komrade.git
else
git clone https://github.com/Komrade/Komrade.git
fi
mv Komrade code
fi
else