Skip to content

Commit

Permalink
chore: remove codesign from makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
f0rbit committed Jan 31, 2025
1 parent e6d99f2 commit f6cc179
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ all: clean build run
build:
@cd src && go build -o ${BINARY_NAME} && mv ${BINARY_NAME} ../
# code sign it (this is for macos) (would be fixed with docker?)
@codesign --sign - ./${BINARY_NAME}
@codesign --verify --verbose ./${BINARY_NAME}
# @codesign --sign - ./${BINARY_NAME}
# @codesign --verify --verbose ./${BINARY_NAME}
@echo "Built binary"

build-coverage:
@cd src && go build -o ${BINARY_NAME} -cover && mv ${BINARY_NAME} ../
# code sign it (this is for macos) (would be fixed with docker?)
@codesign --sign - ./${BINARY_NAME}
@codesign --verify --verbose ./${BINARY_NAME}
# @codesign --sign - ./${BINARY_NAME}
# @codesign --verify --verbose ./${BINARY_NAME}
@echo "Built binary with coverage"

clean:
Expand Down

0 comments on commit f6cc179

Please sign in to comment.