summaryrefslogtreecommitdiff
path: root/Magefile.go
diff options
context:
space:
mode:
Diffstat (limited to 'Magefile.go')
-rw-r--r--Magefile.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/Magefile.go b/Magefile.go
index f3f7a16..270e46a 100644
--- a/Magefile.go
+++ b/Magefile.go
@@ -22,7 +22,7 @@ var Default = Build
// Build compiles the tasksamurai binary.
func Build() error {
fmt.Println("Building tasksamurai...")
- if err := sh.RunV("go", "build", "-o", binaryName, "./cmd/tasksamurai"); err != nil {
+ if err := sh.RunV("go", "build", "-buildvcs=false", "-o", binaryName, "./cmd/tasksamurai"); err != nil {
return fmt.Errorf("build %s: %w", binaryName, err)
}
return nil