Skip to content
This repository was archived by the owner on May 4, 2026. It is now read-only.

Commit eae5738

Browse files
authored
archive repository (#25)
2 parents 21baa98 + b1ed952 commit eae5738

4 files changed

Lines changed: 1893 additions & 68 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@ src/coverage
66
node_modules
77
.env
88
.env.production
9+
.DS_Store
10+
**/.DS_Store

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ all: clean build run
99
build:
1010
@cd src && go build -o ${BINARY_NAME} && mv ${BINARY_NAME} ../
1111
# code sign it (this is for macos) (would be fixed with docker?)
12-
# @codesign --sign - ./${BINARY_NAME}
13-
# @codesign --verify --verbose ./${BINARY_NAME}
12+
@codesign --sign - ./${BINARY_NAME}
13+
@codesign --verify --verbose ./${BINARY_NAME}
1414
@echo "Built binary"
1515

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

2323
clean:

0 commit comments

Comments
 (0)