diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2017-03-26 16:43:14 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-03-26 16:43:45 +0200 |
commit | 62ad0efe142a62e2de833900697bdea4064a3371 (patch) | |
tree | 40f0f2fa61fc3804a3d7cede7040b3df65b1228c /mk | |
parent | c97b189c902ef28de522e43227bd8bdb26072c73 (diff) |
git clone more verbose
Diffstat (limited to 'mk')
-rw-r--r-- | mk/fetch.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/fetch.mk b/mk/fetch.mk index af598f27d..8f3da792c 100644 --- a/mk/fetch.mk +++ b/mk/fetch.mk @@ -68,17 +68,17 @@ $(1): echo "Using git ${PKG_GIT}: $${PKG_VERSION}" $(DL_TRACE); \ case "$${PKG_GIT}" in \ tag|branch) \ - git clone --depth 1 --branch $${PKG_VERSION} $${PKG_SITES} $${PKG_NAME}-$${PKG_VERSION} $(DL_TRACE); \ + git clone --progress --depth 1 --branch $${PKG_VERSION} $${PKG_SITES} $${PKG_NAME}-$${PKG_VERSION} $(DL_TRACE); \ if [ $$$$? -ne 0 ]; then echo "git clone error"; exit 1; fi; \ ;; \ hash) \ - git clone $${PKG_SITES} $${PKG_NAME}-$${PKG_VERSION} $(DL_TRACE); \ + git clone --progress $${PKG_SITES} $${PKG_NAME}-$${PKG_VERSION} $(DL_TRACE); \ if [ $$$$? -ne 0 ]; then echo "git clone error"; exit 1; fi; \ (cd $${PKG_NAME}-$${PKG_VERSION}; git checkout $${PKG_VERSION}) $(DL_TRACE); \ ;; \ esac ;\ else \ - git clone --depth 1 $${PKG_SITES} $${PKG_NAME}-$${PKG_VERSION} $(DL_TRACE); \ + git clone --progress --depth 1 $${PKG_SITES} $${PKG_NAME}-$${PKG_VERSION} $(DL_TRACE); \ if [ $$$$? -ne 0 ]; then echo "git clone error"; exit 1; fi; \ fi; \ tar cJf $${PKG_NAME}-$${PKG_VERSION}.tar.xz $${PKG_NAME}-$${PKG_VERSION}; \ |