Skip to content

Commit

Permalink
update ghcli link (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgamero authored Nov 15, 2023
1 parent 1de9f11 commit 2474733
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/providers/providersutils.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"os"
"os/exec"

log "github.com/sirupsen/logrus"
"github.com/hashicorp/go-version"
"github.com/manifoldco/promptui"
log "github.com/sirupsen/logrus"
)

func GetAzCliVersion() string {
Expand Down Expand Up @@ -93,7 +93,7 @@ func HasGhCli() bool {
ghCmd := exec.Command("gh")
_, err := ghCmd.CombinedOutput()
if err != nil {
log.Fatal("Error: The github cli is required to complete this process. Find installation instructions at this link: https://cli.github.com/manual/installation")
log.Fatal("Error: The github cli is required to complete this process. Find installation instructions at this link: https://github.com/cli/cli#installation")
return false
}

Expand Down

0 comments on commit 2474733

Please sign in to comment.