diff options
Diffstat (limited to 'Magefile.go')
| -rw-r--r-- | Magefile.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Magefile.go b/Magefile.go index 015f0f1..e344a3f 100644 --- a/Magefile.go +++ b/Magefile.go @@ -1,6 +1,6 @@ //go:build mage -// Package main provides build targets for anelephantinachinashop. +// Package main provides build targets for rampage. // Targets follow the same style as other projects: Default builds, Test runs tests, // Bench runs benchmarks, Install copies binary to GOPATH/bin. package main @@ -14,7 +14,7 @@ import ( "github.com/magefile/mage/sh" ) -const binaryName = "anelephantinachinashop" +const binaryName = "rampage" // Default builds the project. func Default() { @@ -23,7 +23,7 @@ func Default() { // Build compiles the binary. func Build() error { - return sh.RunV("go", "build", "-o", binaryName, "./cmd/anelephantinachinashop") + return sh.RunV("go", "build", "-o", binaryName, "./cmd/rampage") } // Test runs all unit tests. |
