Skip to content

Commit a9cb5d5

Browse files
committed
update
1 parent f55970c commit a9cb5d5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

codegen/tml/cmd/template_cmd.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ goto :help
231231
REM when want to use cd to switch to the dir,the codeset need to be set to the utf-8
232232
REM tested on Windows 10 Enterprise LTSC 2021 and system codeset is 936
233233
chcp 65001
234-
for /f %%a in ('go list -m -f "{{.Dir}}" github.com/chenjie199234/Corelib') do set corelib=%%a
234+
for /f %%a in ('go list -m -f {{"\"{{.Dir}}\""}} github.com/chenjie199234/Corelib') do set corelib=%%a
235235
cd %corelib%
236236
chcp %current_chcp%
237237
echo install codegen and protoc plugins in %corelib%
@@ -240,7 +240,7 @@ goto :help
240240
REM don't known why,in different system codeset the corelib's path will be strange
241241
REM when want to use protoc to generate code,the codeset need to be set to the system's codeset
242242
REM tested on Windows 10 Enterprise LTSC 2021 and system codeset is 936
243-
for /f %%a in ('go list -m -f "{{.Dir}}" github.com/chenjie199234/Corelib') do set corelib=%%a
243+
for /f %%a in ('go list -m -f {{"\"{{.Dir}}\""}} github.com/chenjie199234/Corelib') do set corelib=%%a
244244
echo generate api in %workdir%
245245
protoc -I ./ -I %corelib% --go_out=paths=source_relative:. ./api/*.proto
246246
protoc -I ./ -I %corelib% --go-pbex_out=paths=source_relative:. ./api/*.proto

internal/version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import "fmt"
44

55
var major = 0
66
var minor = 0
7-
var patch = 82
7+
var patch = 83
88
var status = ""
99

1010
func String() string {

0 commit comments

Comments
 (0)