summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--magefile.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/magefile.go b/magefile.go
index 7831703..c7ead27 100644
--- a/magefile.go
+++ b/magefile.go
@@ -15,3 +15,8 @@ var Default = Test
func Test() error {
return sh.RunV("go", "test", "-v", "./...")
}
+
+// Run the stanuki CLI
+func Run() error {
+ return sh.RunV("go", "run", "./cmd/stanuki")
+}