From 6b14faa5b14e3c6bb7afaf81bd9e73f460a2b869 Mon Sep 17 00:00:00 2001 From: pk Date: Tue, 3 Sep 2024 14:39:41 +0200 Subject: [PATCH] Fix survey options. --- main.go | 2 +- templates.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 9e6e85e..a3cb1e8 100644 --- a/main.go +++ b/main.go @@ -23,7 +23,7 @@ func main() { app := &cli.App{ Name: "gowebbuild", Usage: "All in one tool to build web frontend projects.", - Version: "6.1.0", + Version: "6.1.1", Authors: []*cli.Author{{ Name: "trading-peter (https://github.com/trading-peter)", }}, diff --git a/templates.go b/templates.go index 9137b7e..cce705b 100644 --- a/templates.go +++ b/templates.go @@ -33,7 +33,7 @@ var qs = []*survey.Question{ Name: "tpl", Prompt: &survey.Select{ Message: "Choose a template:", - Options: []string{".gowebbuild.yaml", "docker_image.sh", "Dockerfile"}, + Options: []string{".air.toml", ".gowebbuild.yaml", "docker_image.sh", "Dockerfile"}, Default: "docker_image.sh", }, },