Skip to content

Commit

Permalink
Merge pull request #90 from BishopFox/add-386-binary-to-release
Browse files Browse the repository at this point in the history
Update Makefile to include 386 linux binary for release action
  • Loading branch information
dbravo-bishopfox committed Jul 4, 2024
2 parents b02ad61 + 738085d commit 70a050a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ all: windows linux macos
.PHONY: release
release: clean
mkdir -p ./cloudfox
mkdir -p ./cloudfox

GOOS=windows GOARCH=amd64 go build -o ./cloudfox/cloudfox.exe .
zip ./cloudfox/cloudfox-windows-amd64.zip ./cloudfox/cloudfox.exe
rm -rf ./cloudfox/cloudfox.exe
Expand All @@ -33,6 +33,10 @@ release: clean
zip ./cloudfox/cloudfox-linux-amd64.zip ./cloudfox/cloudfox .
rm -rf ./cloudfox/cloudfox

GOOS=linux GOARCH=386 go build -o ./cloudfox/cloudfox .
zip ./cloudfox/cloudfox-linux-386.zip ./cloudfox/cloudfox .
rm -rf ./cloudfox/cloudfox

GOOS=darwin GOARCH=amd64 go build -o ./cloudfox/cloudfox .
zip ./cloudfox/cloudfox-macos-amd64.zip ./cloudfox/cloudfox
rm -rf ./cloudfox/cloudfox
Expand All @@ -42,4 +46,4 @@ release: clean
rm -rf ./cloudfox/cloudfox

clean:
rm -rf ./cloudfox
rm -rf ./cloudfox
2 changes: 1 addition & 1 deletion gcp/services/iamService/access-tokens.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package iamservice
// Projects []string
// }

// // Be incorportated in iam.go
// // Be incorporated in iam.go
// func (m *AccessTokensModule) PrintAccessTokens(outputFormat string, outputDirectory string, verbosity int) error {
// 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)
// tokens := gcp.ReadRefreshTokens()
Expand Down
2 changes: 1 addition & 1 deletion globals/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ const CLOUDFOX_USER_AGENT = "cloudfox"
const CLOUDFOX_LOG_FILE_DIR_NAME = ".cloudfox"
const CLOUDFOX_BASE_DIRECTORY = "cloudfox-output"
const LOOT_DIRECTORY_NAME = "loot"
const CLOUDFOX_VERSION = "1.14.0"
const CLOUDFOX_VERSION = "1.14.1"

0 comments on commit 70a050a

Please sign in to comment.