Skip to content

Commit 050b0d9

Browse files
committed
Fix build error from not escaping spaces in WEBEX_SCOPES
1 parent b4c300d commit 050b0d9

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
webex
33
webex-cli
44
*.exe
5+
dist/
56

67
# Codegen intermediates
78
codegen/api_outline.json

.goreleaser.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ builds:
99
- -X github.com/Cloverhound/webex-cli/cmd.Version={{.Version}}
1010
- -X github.com/Cloverhound/webex-cli/internal/appconfig.DefaultClientID={{.Env.WEBEX_CLIENT_ID}}
1111
- -X github.com/Cloverhound/webex-cli/internal/appconfig.DefaultClientSecret={{.Env.WEBEX_CLIENT_SECRET}}
12-
- -X github.com/Cloverhound/webex-cli/internal/appconfig.DefaultScopes={{.Env.WEBEX_SCOPES}}
12+
- "-X 'github.com/Cloverhound/webex-cli/internal/appconfig.DefaultScopes={{.Env.WEBEX_SCOPES}}'"
1313
goos:
1414
- darwin
1515
- linux
@@ -19,11 +19,13 @@ builds:
1919
- arm64
2020

2121
archives:
22-
- format: tar.gz
22+
- formats:
23+
- tar.gz
2324
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
2425
format_overrides:
2526
- goos: windows
26-
format: zip
27+
formats:
28+
- zip
2729

2830
checksum:
2931
name_template: "checksums.txt"

0 commit comments

Comments
 (0)