Skip to content

Commit 92ba506

Browse files
committed
fixed: generate sha1 files from dist root
1 parent 242e871 commit 92ba506

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ build:
2222

2323
dist:
2424
GOOS=$(GOOS) GOARCH=$(GOARCH) $(GOBUILD_ENV) go build $(GOBUILD_FLAGS) -o "dist/$(DIST_OUTPUT)"
25-
$(SHASUM) "dist/$(DIST_OUTPUT)" > "dist/$(DIST_OUTPUT).sha1"
25+
cd dist && $(SHASUM) "$(DIST_OUTPUT)" > "$(DIST_OUTPUT).sha1"
2626

2727
clean:
2828
rm -rf build dist

0 commit comments

Comments
 (0)