Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix debug messages #37

Merged
merged 1 commit into from
Dec 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading