Skip to content

Commit

Permalink
Fix git repo url
Browse files Browse the repository at this point in the history
  • Loading branch information
Frederic DROUET committed Sep 13, 2017
1 parent 48c5b1b commit 967af48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _functions_git.sh
Expand Up @@ -34,7 +34,7 @@ clone_or_fetch_git_repo() {
fi
if [ ! -d ${_src_dir}/${_repo}.git ]; then
echo_info "Cloning repository ${_repo} into ${_src_dir} ..."
git clone -v git@github.com:/${_orga}/${_repo}.git ${_src_dir}/${_repo}.git
git clone -v git@github.com:${_orga}/${_repo}.git ${_src_dir}/${_repo}.git
echo_info "Clone done ..."

# Add remote named blessed for exoplatform organization
Expand Down Expand Up @@ -65,7 +65,7 @@ clone_or_fetch_git_repo() {
rm -rf ${_src_dir}/${_repo}.git
echo_info "Removal done ..."
echo_info "Cloning repository ${_repo} into ${_src_dir} ..."
git clone -v git@github.com:/${_orga}/${_repo}.git ${_src_dir}/${_repo}.git
git clone -v git@github.com:${_orga}/${_repo}.git ${_src_dir}/${_repo}.git
echo_info "Clone done ..."
pushd ${_src_dir}/${_repo}.git > /dev/null 2>&1
set +e
Expand Down

0 comments on commit 967af48

Please sign in to comment.