Skip to content

Commit

Permalink
feat: generate checksums
Browse files Browse the repository at this point in the history
  • Loading branch information
vandycknick committed Feb 23, 2020
1 parent 1a999a0 commit 36c0537
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@ package-all: package
@mkdir -p $(ARTIFACTS)
@cp $(BUILD)/publish/win-x64/$(CLI_TOOL).exe $(ARTIFACTS)/$(CLI_TOOL).win-x64.exe

@echo ""
@echo "\033[0;32mGenerate Checksums \033[0m"
@echo "\033[0;32m----------------- \033[0m"
$(MAKE) checksum

@echo ""
@echo "\033[0;32mOutput \033[0m"
@echo "\033[0;32m----------------- \033[0m"
Expand Down Expand Up @@ -136,8 +141,6 @@ schema:
--namespace WebTty.Api.Messages \
--output $(shell pwd)/$(WEBTTY_CLIENT)/.tmp/messages


chilling:
@echo ""
@echo "\033[0;32m Packaging linux-x64 \033[0m"
@echo "\033[0;32m ------------------- \033[0m"
checksum:
@rm -f $(ARTIFACTS)/SHA256SUMS.txt
@cd $(ARTIFACTS) && find . -type f ! -name "WebTty.Exec.*.nupkg" -print0 | xargs -0 sha256sum | tee SHA256SUMS.txt

0 comments on commit 36c0537

Please sign in to comment.