git_version_gen: don't silence stderr

This should never fail, and error output doesn't hurt here.
This commit is contained in:
Johannes Altmanninger
2026-01-12 10:44:01 +01:00
parent 860bba759d
commit f7d9c92820
3 changed files with 3 additions and 3 deletions

View File

@@ -49,7 +49,7 @@ if [ -n "$NOTARIZE" ] && [ -z "$API_KEY_FILE" ]; then
usage
fi
VERSION=$(build_tools/git_version_gen.sh 2>/dev/null)
VERSION=$(build_tools/git_version_gen.sh)
echo "Version is $VERSION"

View File

@@ -7,7 +7,7 @@
set -e
# Get the version
VERSION=$(build_tools/git_version_gen.sh 2>/dev/null)
VERSION=$(build_tools/git_version_gen.sh)
prefix=fish-$VERSION
path=${FISH_ARTEFACT_PATH:-~/fish_built}/$prefix.tar.xz

View File

@@ -26,7 +26,7 @@ fi
wd="$PWD"
# Get the version from git-describe
VERSION=$(build_tools/git_version_gen.sh 2>/dev/null)
VERSION=$(build_tools/git_version_gen.sh)
# The name of the prefix, which is the directory that you get when you untar
prefix="fish-$VERSION"