Skip to content

Commit 0720b96

Browse files
authored
feat: Add FreeBSD binaries to vt-cli release (#44)
1 parent e306a42 commit 0720b96

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ install:
1515
# Build the project for multiple architectures
1616
all:
1717
gox ${LDFLAGS} \
18-
-osarch="linux/amd64 linux/386 windows/amd64 windows/386 darwin/amd64" \
18+
-osarch="linux/amd64 linux/386 windows/amd64 windows/386 darwin/amd64 freebsd/amd64 freebsd/386" \
1919
-output "build/{{.OS}}/{{.Arch}}/{{.Dir}}" github.com/VirusTotal/vt-cli/vt
2020

2121
# Cleans our project: deletes binaries

new_release.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ zip -j dist/Linux32.zip build/linux/386/vt
66
zip -j dist/Linux64.zip build/linux/amd64/vt
77
zip -j dist/Windows32.zip build/windows/386/vt.exe
88
zip -j dist/Windows64.zip build/windows/amd64/vt.exe
9+
zip -j dist/FreeBSD32.zip build/freebsd/386/vt
10+
zip -j dist/FreeBSD64.zip build/freebsd/amd64/vt
911
ghr -t $GITHUB_TOKEN -u VirusTotal -replace $VERSION dist/

0 commit comments

Comments
 (0)