diff --git a/.github/run-tests-go-get-u.sh b/.github/run-tests-go-get-u.sh index 5700f20..1a5e9a8 100755 --- a/.github/run-tests-go-get-u.sh +++ b/.github/run-tests-go-get-u.sh @@ -14,6 +14,6 @@ GO111MODULE="on" go get -u "github.com/KEINOS/Hello-Cobra/hello-cobra@latest" || } hello-cobra --version | grep "hello-cobra version" || { - echo >&2 "failed to execute command. Version info is missing" + echo >&2 "failed to execute command. The output does not contain a valid version info." exit 1 } diff --git a/.github/run-tests-go-install.sh b/.github/run-tests-go-install.sh index 58ac6fe..b05b760 100755 --- a/.github/run-tests-go-install.sh +++ b/.github/run-tests-go-install.sh @@ -14,6 +14,6 @@ go install "github.com/KEINOS/Hello-Cobra/hello-cobra@latest" || { } hello-cobra --version | grep "hello-cobra version" || { - echo >&2 "failed to execute command. Version info is missing" + echo >&2 "failed to execute command. The output does not contain a valid version info." exit 1 }