Skip to content

Commit 54fd956

Browse files
authored
Merge pull request #6 from asteurer/update-help
updating help messages and removing windows + arm64 from release
2 parents 93d0cc0 + 3385e5b commit 54fd956

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/release.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ jobs:
2222
- { goArch: "amd64", goOs: "linux", pluginifyArch: "amd64", pluginifyOs: linux}
2323
- { goArch: "arm64", goOs: "linux", pluginifyArch: "aarch64", pluginifyOs: linux}
2424
- { goArch: "amd64", goOs: "windows", pluginifyArch: "amd64", pluginifyOs: windows}
25-
- { goArch: "arm64", goOs: "windows", pluginifyArch: "aarch64", pluginifyOs: windows}
2625
- { goArch: "arm64", goOs: "darwin", pluginifyArch: "amd64", pluginifyOs: macos}
2726
- { goArch: "amd64", goOs: "darwin", pluginifyArch: "aarch64", pluginifyOs: macos}
2827
steps:

cmd/open.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ import (
66

77
var openCmd = &cobra.Command{
88
Use: "open",
9-
Short: "Opens the desired OTel UI in the default browser. Accepts the following arguments: 'prometheus' or 'p', 'grafana' or 'g', 'jaeger' or 'j'.",
9+
Short: "Opens the desired OTel UI in the default browser.",
1010
}

cmd/up.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ import (
1010

1111
var upCmd = &cobra.Command{
1212
Use: "up",
13-
Short: "Runs a Spin App with the default OTel environment variables. Flags for the 'spin up' command can be used as well: 'spin otel up -- --help'",
13+
Short: "Runs a Spin App with the default OTel environment variables.",
14+
Long: "Runs a Spin App with the default OTel environment variables. Any flags that work with the `spin up` command, will work with the `spin otel up` command: 'spin otel up -- --help'",
1415
RunE: func(cmd *cobra.Command, args []string) error {
1516
if err := up(args); err != nil {
1617
return err

0 commit comments

Comments
 (0)