Skip to content

Commit

Permalink
Dependencies update
Browse files Browse the repository at this point in the history
  • Loading branch information
andyone committed Oct 31, 2024
1 parent e52f6a1 commit ea7c5d7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions clone/clone.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ func configureUI() {

input.Prompt = "› "
input.TitleColorTag = "{s}"
input.NewLine = true

req.SetUserAgent("RBInstall-Clone", VER)
}
Expand Down Expand Up @@ -214,9 +215,8 @@ func cloneRepository(url, dir string) {

if !options.GetB(OPT_YES) {
ok, err := input.ReadAnswer("Clone this repository?", "N")
fmtc.NewLine()

if !ok || err != nil {
if err != nil || !ok {
os.Exit(0)
}
}
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/essentialkaos/rbinstall
go 1.22.8

require (
github.com/essentialkaos/ek/v13 v13.9.2
github.com/essentialkaos/ek/v13 v13.10.0
github.com/essentialkaos/npck v1.7.0
)

Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ github.com/essentialkaos/check v1.4.1 h1:SuxXzrbokPGTPWxGRnzy0hXvtb44mtVrdNxgPa1
github.com/essentialkaos/check v1.4.1/go.mod h1:xQOYwFvnxfVZyt5Qvjoa1SxcRqu5VyP77pgALr3iu+M=
github.com/essentialkaos/depsy v1.3.1 h1:00k9QcMsdPM4IzDaEFHsTHBD/zoM0oxtB5+dMUwbQa8=
github.com/essentialkaos/depsy v1.3.1/go.mod h1:B5+7Jhv2a2RacOAxIKU2OeJp9QfZjwIpEEPI5X7auWM=
github.com/essentialkaos/ek/v13 v13.9.2 h1:3sXGDUZ5C5+8tSmat1cTj6lhYIzCOlcaHC2ulShF2OQ=
github.com/essentialkaos/ek/v13 v13.9.2/go.mod h1:6G9EPJ/k4N0mugTLqPuWS/fb7K5JwoEqZSkNSfBCsgg=
github.com/essentialkaos/ek/v13 v13.10.0 h1:uoLNjiDRJ/bOPAciq8Ff92r+XHgTm+rBI4ItOtZje9k=
github.com/essentialkaos/ek/v13 v13.10.0/go.mod h1:6G9EPJ/k4N0mugTLqPuWS/fb7K5JwoEqZSkNSfBCsgg=
github.com/essentialkaos/go-linenoise/v3 v3.6.1 h1:VzjakaWNAPfattl/HSIJveWYpfrxAYHzUl8u6DdOjtY=
github.com/essentialkaos/go-linenoise/v3 v3.6.1/go.mod h1:hpxke5G2eXvFhVnDAiGU9ArH3MTDGGc13afObIbuaJQ=
github.com/essentialkaos/npck v1.7.0 h1:Lqx6zj6kZZLXQ2Mz01hnPLUf6FhW4TQBt8Az6ry1LEM=
Expand Down

0 comments on commit ea7c5d7

Please sign in to comment.