Skip to content

Commit 70a050a

Browse files
Merge pull request #90 from BishopFox/add-386-binary-to-release
Update Makefile to include 386 linux binary for release action
2 parents b02ad61 + 738085d commit 70a050a

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

Makefile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ all: windows linux macos
2424
.PHONY: release
2525
release: clean
2626
mkdir -p ./cloudfox
27-
mkdir -p ./cloudfox
27+
2828
GOOS=windows GOARCH=amd64 go build -o ./cloudfox/cloudfox.exe .
2929
zip ./cloudfox/cloudfox-windows-amd64.zip ./cloudfox/cloudfox.exe
3030
rm -rf ./cloudfox/cloudfox.exe
@@ -33,6 +33,10 @@ release: clean
3333
zip ./cloudfox/cloudfox-linux-amd64.zip ./cloudfox/cloudfox .
3434
rm -rf ./cloudfox/cloudfox
3535

36+
GOOS=linux GOARCH=386 go build -o ./cloudfox/cloudfox .
37+
zip ./cloudfox/cloudfox-linux-386.zip ./cloudfox/cloudfox .
38+
rm -rf ./cloudfox/cloudfox
39+
3640
GOOS=darwin GOARCH=amd64 go build -o ./cloudfox/cloudfox .
3741
zip ./cloudfox/cloudfox-macos-amd64.zip ./cloudfox/cloudfox
3842
rm -rf ./cloudfox/cloudfox
@@ -42,4 +46,4 @@ release: clean
4246
rm -rf ./cloudfox/cloudfox
4347

4448
clean:
45-
rm -rf ./cloudfox
49+
rm -rf ./cloudfox

gcp/services/iamService/access-tokens.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ package iamservice
1717
// Projects []string
1818
// }
1919

20-
// // Be incorportated in iam.go
20+
// // Be incorporated in iam.go
2121
// func (m *AccessTokensModule) PrintAccessTokens(outputFormat string, outputDirectory string, verbosity int) error {
2222
// GCPLogger.InfoM(fmt.Sprintf("Enumerating GCP local access tokens (%s, %s)...", color.CyanString("default user token"), color.RedString("application-default token")), globals.GCP_ACCESSTOKENS_MODULE_NAME)
2323
// tokens := gcp.ReadRefreshTokens()

globals/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ const CLOUDFOX_USER_AGENT = "cloudfox"
44
const CLOUDFOX_LOG_FILE_DIR_NAME = ".cloudfox"
55
const CLOUDFOX_BASE_DIRECTORY = "cloudfox-output"
66
const LOOT_DIRECTORY_NAME = "loot"
7-
const CLOUDFOX_VERSION = "1.14.0"
7+
const CLOUDFOX_VERSION = "1.14.1"

0 commit comments

Comments
 (0)