From 75a8cec72ec4f2cf32e323984c05e4c70300a325 Mon Sep 17 00:00:00 2001 From: "Lance R. Vick" Date: Fri, 27 Jan 2023 16:54:51 -0800 Subject: [PATCH] fix example binary name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 72d9120..2963640 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ us as desired. .PHONY: release release: $(OUT_DIR)/hello $(OUT_DIR)/manifest.txt mkdir -p $(RELEASE_DIR) - cp $(OUT_DIR)/my-binary $(RELEASE_DIR)/hello + cp $(OUT_DIR)/hello $(RELEASE_DIR)/hello cp $(OUT_DIR)/release.env $(RELEASE_DIR)/release.env cp $(OUT_DIR)/manifest.txt $(RELEASE_DIR)/manifest.txt ```