Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions get_repo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ readonly GIT_SUFFIX=".git"
# git write access
readonly GIT_PREFIX="[email protected]:${GIT_USERNAME}/"
# git read access
readonly GIT_READ_ONLY_PREFIX="git://github.com/${GIT_USERNAME}/"
readonly GIT_READ_ONLY_PREFIX="https://github.com/${GIT_USERNAME}/"
# curl/wget url
readonly URL_PREFIX="https://github.com/${GIT_USERNAME}/"
# tar
Expand Down Expand Up @@ -172,7 +172,7 @@ clone() {
clone_arg="$1"
git clone >&2 "$clone_arg"
if [ ! "$?" -eq 0 ]; then
echo "$0: Could not glone: git clone $clone_arg"
echo "$0: Could not clone: git clone $clone_arg"
exit "$EXIT_ERROR_GIT"
fi
}
Expand Down