mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
unstableGitUpdater: Drop --bare cloning
It messes with tags
This commit is contained in:
parent
ce91e3572b
commit
ce3a2f648e
@ -84,9 +84,7 @@ let
|
|||||||
# Get info about HEAD from a shallow git clone
|
# Get info about HEAD from a shallow git clone
|
||||||
tmpdir="$(mktemp -d)"
|
tmpdir="$(mktemp -d)"
|
||||||
|
|
||||||
cloneArgs=(
|
cloneArgs=()
|
||||||
--bare
|
|
||||||
)
|
|
||||||
|
|
||||||
if [[ "$shallow_clone" == "1" ]]; then
|
if [[ "$shallow_clone" == "1" ]]; then
|
||||||
cloneArgs+=(--depth=1)
|
cloneArgs+=(--depth=1)
|
||||||
@ -120,7 +118,7 @@ let
|
|||||||
last_tag="$(git describe --tags --abbrev=0 --match "''${tag_format}" 2> /dev/null || true)"
|
last_tag="$(git describe --tags --abbrev=0 --match "''${tag_format}" 2> /dev/null || true)"
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
last_tag="$(git describe --tags --abbrev=0 2> --match "''${tag_format}" /dev/null || true)"
|
last_tag="$(git describe --tags --abbrev=0 --match "''${tag_format}" 2> /dev/null || true)"
|
||||||
fi
|
fi
|
||||||
if [[ -z "$last_tag" ]]; then
|
if [[ -z "$last_tag" ]]; then
|
||||||
last_tag="0"
|
last_tag="0"
|
||||||
|
Loading…
Reference in New Issue
Block a user