aboutsummaryrefslogtreecommitdiff
path: root/lib/actions
diff options
context:
space:
mode:
Diffstat (limited to 'lib/actions')
-rw-r--r--lib/actions/fetch.bash19
1 files changed, 16 insertions, 3 deletions
diff --git a/lib/actions/fetch.bash b/lib/actions/fetch.bash
index 8af563f..ec65aaa 100644
--- a/lib/actions/fetch.bash
+++ b/lib/actions/fetch.bash
@@ -70,10 +70,23 @@ download_module_git() {
fi
notice "Cloning $url@$ref to $destination"
- git clone -b "$ref" "$url" --depth=1 --single-branch "$destination" \
- > /dev/null 2>&1
- rm -fr -- "$destination/.git"
+ mkdir -p -- "$destination"
+ pushd -- "$destination" > /dev/null
+
+ git init > /dev/null
+ git remote add origin "$url" 2> /dev/null
+ git fetch origin -a 2> /dev/null
+
+ # Try to use the ref (branch or tag)
+ if ! git reset --hard "origin/$ref" 2>&1 > /dev/null
+ then
+ # Or the commit hash
+ git reset --hard "$(git log -1 --format=format:"%H" "$ref")"
+ fi
+
+ rm -fr -- .git
+ popd -- "$destination" > /dev/null
}
download_module_http() {