Skip to content

Commit

Permalink
Merge pull request #5 from infinum/fix/ssh-to-http-clone
Browse files Browse the repository at this point in the history
Replacing git clone ssh url with http url
  • Loading branch information
mgalijot authored Oct 8, 2020
2 parents addc881 + f4750ba commit da085a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app-deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ function script_auto_update {
echo
echo "Fetching new data..."
mkdir .app_deploy_tmp
git clone --quiet git@github.com:infinum/app-deploy-script.git .app_deploy_tmp
git clone --quiet https://github.com/infinum/app-deploy-script.git .app_deploy_tmp
echo "Updating..."
cat .app_deploy_tmp/app-deploy.sh > /usr/local/bin/app-deploy
echo "Cleaning temporary files..."
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ fi
echo
echo "Fetching script data..."
mkdir .app_deploy_tmp
git clone --quiet git@github.com:infinum/app-deploy-script.git .app_deploy_tmp
git clone --quiet https://github.com/infinum/app-deploy-script.git .app_deploy_tmp
echo "Installing..."
cat .app_deploy_tmp/app-deploy.sh > /usr/local/bin/app-deploy

Expand Down

0 comments on commit da085a0

Please sign in to comment.