Skip to content

Commit 7324f5b

Browse files
authored
bump tsunami version to v0.12.3 (#2568)
1 parent 212c1fe commit 7324f5b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pkg/waveapputil/waveapputil.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"github.com/wavetermdev/waveterm/tsunami/build"
1717
)
1818

19-
const DefaultTsunamiSdkVersion = "v0.12.2"
19+
const DefaultTsunamiSdkVersion = "v0.12.3"
2020

2121
func GetTsunamiScaffoldPath() string {
2222
settings := wconfig.GetWatcher().GetFullConfig().Settings

tsunami/cmd/main-tsunami.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const (
1414
EnvTsunamiScaffoldPath = "TSUNAMI_SCAFFOLDPATH"
1515
EnvTsunamiSdkReplacePath = "TSUNAMI_SDKREPLACEPATH"
1616
EnvTsunamiNodePath = "TSUNAMI_NODEPATH"
17-
TsunamiSdkVersion = "v0.12.2"
17+
TsunamiSdkVersion = "v0.12.3"
1818
)
1919

2020
// these are set at build time
@@ -126,18 +126,18 @@ var packageCmd = &cobra.Command{
126126
verbose, _ := cmd.Flags().GetBool("verbose")
127127
output, _ := cmd.Flags().GetString("output")
128128
appPath := args[0]
129-
129+
130130
if output == "" {
131131
appName := build.GetAppName(appPath)
132132
output = filepath.Join(appPath, appName+".tsapp")
133133
}
134-
134+
135135
appFS := build.NewDirFS(appPath)
136136
if err := build.MakeAppPackage(appFS, appPath, verbose, output); err != nil {
137137
fmt.Printf("Error: %v\n", err)
138138
os.Exit(1)
139139
}
140-
140+
141141
if verbose {
142142
fmt.Printf("Successfully created package: %s\n", output)
143143
}

0 commit comments

Comments
 (0)