Skip to content

Commit 227f5c2

Browse files
authored
Merge branch 'main' into feature/add-dartanalyzer
2 parents b133aa3 + 244e145 commit 227f5c2

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ bash <(curl -Ls https://raw.githubusercontent.com/codacy/codacy-cli-v2/main/coda
5454
You can either put the downloaded script in a specific file or create an alias that will download the script and look for changes:
5555

5656
```bash
57-
alias codacy-cli-v2="bash <(curl -Ls https://raw.githubusercontent.com/codacy/codacy-cli-v2/main/codacy-cli.sh)"
57+
alias codacy-cli="bash <(curl -Ls https://raw.githubusercontent.com/codacy/codacy-cli-v2/main/codacy-cli.sh)"
5858
```
5959

6060
## Installation

cli-v2.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ func main() {
3131

3232
// All other commands require a configuration file
3333
if configErr != nil && len(os.Args) > 1 {
34-
fmt.Println(configErr)
3534
fmt.Println("No configuration file was found, execute init command first.")
3635
return
3736
}

config/tools-installer.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ func InstallTools(config *ConfigType, registry string) error {
2828

2929
// InstallTool installs a specific tool
3030
func InstallTool(name string, toolInfo *plugins.ToolInfo, registry string) error {
31-
fmt.Println("Installing tool", name, "in", toolInfo.InstallDir)
3231
// Check if the tool is already installed
3332
if isToolInstalled(toolInfo) {
3433
fmt.Printf("Tool %s v%s is already installed\n", name, toolInfo.Version)

0 commit comments

Comments
 (0)