Avoid hardcoding executable name in make.bash

That incorrectly produced `pat` instead of `pat.exe` on Windows.
This commit is contained in:
Martin Hebnes Pedersen 2025-12-20 12:45:31 +01:00
parent 52625bdfaf
commit 10f9e9c31f

View file

@ -71,7 +71,7 @@ fi
echo
echo "Building Pat v$VERSION..."
go build -tags "$TAGS" -o pat
go build -tags "$TAGS"
# Build macOS pkg
if [[ "$OS" == "darwin"* ]] && command -v packagesbuild >/dev/null 2>&1; then