Skip to content

Commit 902e40f

Browse files
author
Deepak Sharma
authored
intelliJ cli support (#57)
1 parent 1438e2e commit 902e40f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

cmd/validators.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ func validateFileArg(cmd *cobra.Command, args []string) error {
1919
}
2020

2121
func validateFlagValues(flag string) error {
22-
validValues := []string{"jenkins", "terminal", "tekton", "gh-actions"}
22+
validValues := []string{"jenkins", "terminal", "tekton", "gh-actions", "intellij"}
2323
for _, item := range validValues {
2424
if item == flag {
2525
return nil

docs/cli_README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,22 @@ You can manually change your preference about usage data collection by running i
2828

2929
- ##### For Linux
3030
```
31-
$ curl -s -L https://github.com/fabric8-analytics/cli-tools/releases/download/v0.1.2/crda_0.1.2_Linux_64bit.tar.gz | tar xvz -C .
31+
$ curl -s -L https://github.com/fabric8-analytics/cli-tools/releases/download/v0.2.0/crda_0.2.0_Linux_64bit.tar.gz | tar xvz -C .
3232
```
3333
- ##### For Linux - Fedora/CentOS/RHEL
3434
```
35-
$ curl -s -L https://github.com/fabric8-analytics/cli-tools/releases/download/v0.1.2/crda_0.1.2_Linux-64bit.rpm
35+
$ curl -s -L https://github.com/fabric8-analytics/cli-tools/releases/download/v0.2.0/crda_0.2.0_Linux-64bit.rpm
3636
```
3737
- ##### For MacOS
3838
```
39-
$ curl -s -L https://github.com/fabric8-analytics/cli-tools/releases/download/v0.1.2/crda_0.1.2_macOS_64bit.tar.gz | tar xvz -C .
39+
$ curl -s -L https://github.com/fabric8-analytics/cli-tools/releases/download/v0.2.0/crda_0.2.0_macOS_64bit.tar.gz | tar xvz -C .
4040
```
4141
- ##### For MacOS - Apple Silicon
4242
```
43-
$ curl -s -L https://github.com/fabric8-analytics/cli-tools/releases/download/v0.1.2/crda_0.1.2_macOS_ARM64.tar.gz | tar xvz -C .
43+
$ curl -s -L https://github.com/fabric8-analytics/cli-tools/releases/download/v0.2.0/crda_0.2.0_macOS_ARM64.tar.gz | tar xvz -C .
4444
```
4545
- ##### For Windows
46-
Click [here](https://github.com/fabric8-analytics/cli-tools/releases/download/v0.1.2/crda_0.1.2_Windows_64bit.tar.gz) to start download.
46+
Click [here](https://github.com/fabric8-analytics/cli-tools/releases/download/v0.2.0/crda_0.2.0_Windows_64bit.tar.gz) to start download.
4747

4848
### Usage:
4949
Executable supports following commands:
@@ -75,7 +75,7 @@ Executable supports following commands:
7575
- `--debug`: (bool) (Optional): Debug Flag. Enables Debug Logs
7676
- `--no-color`: (bool) (Optional): Toggles colors in output.
7777
- `--help` : help about binary functionalities.
78-
- `--client`: Telemetry Client indentification [tekton/jenkins/gh-actions/terminal].
78+
- `--client`: (string) Telemetry client identification [tekton/jenkins/gh-actions/intellij/terminal].
7979

8080
### EXIT CODES
8181

0 commit comments

Comments
 (0)