Skip to content

Commit

Permalink
Fixed error message if a pack cannot be found in current index.pidx
Browse files Browse the repository at this point in the history
  • Loading branch information
thorstendb-ARM committed Sep 6, 2023
1 parent cb525ec commit 1f61adc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/errors/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ var (
ErrPackVersionNotFoundInPdsc = errors.New("pack version not found in the pdsc file")
ErrPackVersionNotLatestReleasePdsc = errors.New("pack version is not the latest in the pdsc file")
ErrPackVersionNotAvailable = errors.New("target pack version is not available")
ErrPackURLCannotBeFound = errors.New("URL for the pack cannot be determined. Please consider updating the public index. Ex: cpackget index --force https://keil.com/pack/index.pidx")
ErrPackURLCannotBeFound = errors.New("URL for the pack cannot be determined. Please consider updating the public index. Ex: cpackget update-index")

// Hack to allow multiple error logs while still avoiding duplicating the last error log
ErrAlreadyLogged = errors.New("already logged")
Expand Down

0 comments on commit 1f61adc

Please sign in to comment.