Skip to content

Commit

Permalink
Add FreeBSD binaries, bump up version to v1.29.1
Browse files Browse the repository at this point in the history
  • Loading branch information
benhoyt committed Nov 24, 2024
1 parent b0f1c00 commit 4b6c79a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion goawk.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ import (
)

const (
version = "v1.29.0"
version = "v1.29.1"
copyright = "GoAWK " + version + " - Copyright (c) 2022 Ben Hoyt"
shortUsage = "usage: goawk [-F fs] [-v var=value] [-f progfile | 'prog'] [file ...]"
longUsage = `Standard AWK arguments:
Expand Down
5 changes: 5 additions & 0 deletions scripts/make_binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,9 @@ tar -cvzf "goawk_${VERSION}_darwin_amd64.tar.gz" goawk README.md LICENSE.txt doc
GOOS=darwin GOARCH=arm64 go build -ldflags="-w"
tar -cvzf "goawk_${VERSION}_darwin_arm64.tar.gz" goawk README.md LICENSE.txt docs/*

GOOS=freebsd GOARCH=amd64 go build -ldflags="-w"
tar -cvzf "goawk_${VERSION}_freebsd_amd64.tar.gz" goawk README.md LICENSE.txt docs/*
GOOS=freebsd GOARCH=arm go build -ldflags="-w"
tar -cvzf "goawk_${VERSION}_freebsd_arm.tar.gz" goawk README.md LICENSE.txt docs/*

rm -f goawk goawk.exe

0 comments on commit 4b6c79a

Please sign in to comment.