Skip to content

Commit

Permalink
This should fix build issues as the quotation marks were in the wrong…
Browse files Browse the repository at this point in the history
… location
  • Loading branch information
hunoz committed May 21, 2023
1 parent ad2b80b commit f951623
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ PoolRegionFlag = ${PKG}/cognito.PoolRegion=${SPARK_POOL_REGION}


build:
GOOS=${GOOS} GOARCH=${GOARCH} go build -ldflags="-X ${ClientIdLdFlag} -X ${PoolIdLdFlag} -X ${PoolRegionFlag} -o spark-${GOOS}-${GOARCH}"
GOOS=${GOOS} GOARCH=${GOARCH} go build -ldflags="-X ${ClientIdLdFlag} -X ${PoolIdLdFlag} -X ${PoolRegionFlag}" -o spark-${GOOS}-${GOARCH}

run:
GOOS=${GOOS} GOARCH=${GOARCH} go run main.go -ldflags="-X ${ClientIdLdFlag} -X ${PoolIdLdFlag} ${PoolRegionFlag}"

0 comments on commit f951623

Please sign in to comment.