From 8c5b58a1b9e5451fda6aafa92c02183248d69791 Mon Sep 17 00:00:00 2001 From: KEINOS Date: Wed, 1 Dec 2021 10:25:40 +0900 Subject: [PATCH] chore: fix output message --- .github/run-tests-go-get-u.sh | 2 +- .github/run-tests-go-install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 }