Skip to content

Commit

Permalink
Fix debug messages (#37)
Browse files Browse the repository at this point in the history
Signed-off-by: Pavel Larkin <laxkin@gmail.com>
  • Loading branch information
plar committed Dec 16, 2024
1 parent c0871b8 commit 00615f1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions make
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down Expand Up @@ -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" .
}

Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 00615f1

Please sign in to comment.