Replace 'git-foo' with 'git foo' as the former is now deprecated

This commit is contained in:
Laurence Withers 2008-08-18 18:42:22 +00:00
commit ce5a97fd2e
3 changed files with 9 additions and 9 deletions

View file

@ -36,7 +36,7 @@ PKGNAME="$(basename ${REPOS})-${VER}"
echo "Cloning repository..."
do_cmd cd "${DIR}" || exit 1
do_cmd rm -rf "${PKGNAME}" "${PKGNAME}-doc" || exit 1
do_cmd git-clone --local --shared -n "${REPOS}" "${PKGNAME}" || exit 1
do_cmd git clone --local --shared -n "${REPOS}" "${PKGNAME}" || exit 1
do_cmd cd "${PKGNAME}" || exit 1
print_success "Done"
@ -44,7 +44,7 @@ print_success "Done"
# Check out a new copy of the library from git
echo "Checking out tag ${VER}..."
do_cmd git-checkout -b releaseprivate "${VER}" || exit 1
do_cmd git checkout -b releaseprivate "${VER}" || exit 1
print_success "Done"