Skip to content

Commit ea53c39

Browse files
andrzej-janczakhjrocha
authored andcommitted
Feature/improve ux (#50)
* feature: improve starting from zero UX * ux: update API token instructions in welcome message * chore: update GitHub Actions workflow to initialize cli-v2 and remove Windows support * feature: installation progress bar * feature: enhance installation checks and user feedback * refactor: update configuration handling and directory creation
1 parent 1a40861 commit ea53c39

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

cli-v2.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ func main() {
3131

3232
// All other commands require a configuration file
3333
if configErr != nil && len(os.Args) > 1 {
34+
<<<<<<< HEAD
35+
=======
36+
fmt.Println(configErr)
37+
>>>>>>> eb43f2e (Feature/improve ux (#50))
3438
fmt.Println("No configuration file was found, execute init command first.")
3539
return
3640
}

config/tools-installer.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ func InstallTool(name string, toolInfo *plugins.ToolInfo, registry string) error
5757
// For runtime-based tools
5858
fmt.Printf("Installing %s using %s runtime...\n", name, toolInfo.Runtime)
5959
return installRuntimeTool(name, toolInfo, registry)
60+
6061
}
6162

6263
func installRuntimeTool(name string, toolInfo *plugins.ToolInfo, registry string) error {

0 commit comments

Comments
 (0)