From a4eb0c0a9fed55b3c2dd28907d429fae7d517726 Mon Sep 17 00:00:00 2001 From: Damien Sedgwick Date: Thu, 18 Jul 2024 19:00:24 +0100 Subject: [PATCH] corrected last instruction as it still mentioned make. --- napp.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/napp.go b/napp.go index 98e9a4a..671ce7c 100644 --- a/napp.go +++ b/napp.go @@ -21,7 +21,7 @@ func main() { app := &cli.App{ Name: "napp", UsageText: "[command] [command options]", - Version: "v1.3.0", + Version: "v1.3.1", Description: `A command line tool that bootstraps Go, HTMX and SQLite web applications and Dockerises them for ease of deployment`, Commands: []cli.Command{ @@ -54,7 +54,7 @@ func main() { fmt.Println("cd " + projectname) fmt.Println("go mod init") fmt.Println("go mod tidy") - fmt.Println("make all") + fmt.Println("go run cmd/main.go") } return nil