Skip to content

Commit

Permalink
corrected last instruction as it still mentioned make.
Browse files Browse the repository at this point in the history
  • Loading branch information
damiensedgwick committed Jul 18, 2024
1 parent e8b3367 commit a4eb0c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions napp.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit a4eb0c0

Please sign in to comment.