Remove unnecessary git tag parsing logic in nixos docker build

This commit is contained in:
Erica Marigold 2025-02-05 17:01:54 +00:00
parent f479a5bbad
commit 2c07b6c7b0
Signed by: DevComp
SSH key fingerprint: SHA256:jD3oMT4WL3WHPJQbrjC3l5feNCnkv7ndW8nYaHX5wFw

View file

@ -2,16 +2,6 @@
set -exEuo pipefail set -exEuo pipefail
git fetch --tags
nixos_tag="$(
git tag |
grep '^nixos-' |
sed -e 's/^nixos-//' |
sort -V |
tail -n1
)"
if [ -z "$NIXOS_TAG" ]; then if [ -z "$NIXOS_TAG" ]; then
echo "Error: NIXOS_TAG is not set or is empty." echo "Error: NIXOS_TAG is not set or is empty."
exit 1 exit 1