From 00615f1a3b519ae600935c8839ea2c3e9e414ba9 Mon Sep 17 00:00:00 2001 From: Pavel Larkin Date: Mon, 2 Dec 2024 19:16:16 -0800 Subject: [PATCH] Fix debug messages (#37) Signed-off-by: Pavel Larkin --- make | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/make b/make index 61a5bf7..67ee070 100755 --- a/make +++ b/make @@ -38,7 +38,7 @@ qa() { ## qa/mod: run go mod tidy and go mod verify qa_mod() { - echo "✔︎ Running go mod tidy and go mod verify..." + echo "✔️ Running go mod tidy and go mod verify..." go mod tidy -v go mod verify } @@ -112,19 +112,19 @@ qa_benchmarks() { ## go/tidy: tidy modfiles and format .go files go_tidy() { - echo "✔︎ Running go mod tidy..." + echo "✔️ Running go mod tidy..." go mod tidy -v } ## go/fmt: format .go files go_fmt() { - echo "✔︎ Running go fmt..." + echo "✔️ Running go fmt..." go fmt ./... } ## go/build/asm: build the package and show the assembly output go_build_asm() { - echo "✔︎ Running go build asm..." + echo "✔️ Running go build asm..." go build -a -work -v -gcflags="-S -B -C" . } @@ -135,7 +135,7 @@ go_build_asm() { ## [git]: git commands ## git/push: push changes to the github repository git_push() { - echo "✔︎ Running git push..." + echo "✔️ Running git push..." confirm "Pushing changes to the github repository." || exit 1 qa @@ -145,7 +145,7 @@ git_push() { ## git/release: release a new version git_release() { - echo "✔︎ Running git release..." + echo "✔️ Running git release..." confirm "Releasing a new version." || exit 1 qa