summaryrefslogtreecommitdiff
path: root/Magefile.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-07-04 23:00:04 +0300
committerPaul Buetow <paul@buetow.org>2026-07-04 23:00:04 +0300
commit6a2796f31444b21488ab9d383292841613a1d9c7 (patch)
tree54005b0e379d2d5b16012cec3563eccd321c9968 /Magefile.go
parent2c4c430e6f95f9c2569a610fb7b0e8f0b6e71f28 (diff)
minor refactor
Diffstat (limited to 'Magefile.go')
-rw-r--r--Magefile.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/Magefile.go b/Magefile.go
index 44cfeee..0c3c59c 100644
--- a/Magefile.go
+++ b/Magefile.go
@@ -32,7 +32,6 @@ func Build() error {
return run("go", "build", "-o", binName, "./cmd/gonf")
}
-
// Run builds and runs the program.
func Run() error {
fmt.Println("running...")
@@ -45,7 +44,7 @@ func Run() error {
// Test runs all unit tests.
func Test() error {
fmt.Println("testing...")
- return run("go", "test", "./...")
+ return run("go", "test", "-v", "./...")
}
// Lint runs go vet.
@@ -77,4 +76,4 @@ func Uninstall() error {
fmt.Println("removed " + binPath)
}
return nil
-} \ No newline at end of file
+}