From ef8c16d773b8f537bb585f562a309561f0bb9f33 Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Mon, 9 Oct 2023 17:36:58 +1100 Subject: [PATCH] Fix bindings help text --- v3/internal/commands/bindings.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v3/internal/commands/bindings.go b/v3/internal/commands/bindings.go index 1c89544da..05d031eff 100644 --- a/v3/internal/commands/bindings.go +++ b/v3/internal/commands/bindings.go @@ -5,7 +5,7 @@ import "github.com/wailsapp/wails/v3/internal/parser" type GenerateBindingsOptions struct { Silent bool `name:"silent" description:"Silent mode"` ModelsFilename string `name:"m" description:"The filename for the models file" default:"models.ts"` - BindingsFilename string `name:"b" description:"The filename for the bindings file" default:"bindings.js"` + BindingsFilename string `name:"b" description:"The filename for the bindings file" default:"bindings_.js"` ProjectDirectory string `name:"p" description:"The project directory" default:"."` OutputDirectory string `name:"d" description:"The output directory" default:"."` }