From caffedce0292ced67fec76fac753adc690d4bae3 Mon Sep 17 00:00:00 2001 From: Curt Tudor Date: Mon, 25 Mar 2024 14:08:49 -0600 Subject: [PATCH] adjust generate_rest.sh --- bin/generate_rest.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/generate_rest.sh b/bin/generate_rest.sh index cf750344..684131d0 100755 --- a/bin/generate_rest.sh +++ b/bin/generate_rest.sh @@ -13,17 +13,17 @@ command -v openapi >/dev/null 2>&1 || { } command -v swagger-codegen 2>&1 || { - echo >&2 "command 'swagger-codegen. see: https://github.com/swagger-api/swagger-codegen for installation" + echo >&2 "command 'swagger-codegen' not installed. see: https://github.com/swagger-api/swagger-codegen for installation" exit 1 } command -v openapi-generator-cli 2>&1 || { - echo >&2 "command 'openapi-generator-cli. see: https://www.npmjs.com/package/@openapitools/openapi-generator-cli for installation" + echo >&2 "command 'openapi-generator-cli' not installed. see: https://www.npmjs.com/package/@openapitools/openapi-generator-cli for installation" exit 1 } command -v realpath 2>&1 || { - echo >&2 "command 'realpath. see: https://www.npmjs.com/package/realpath for installation" + echo >&2 "command 'realpath' not installed. see: https://www.npmjs.com/package/realpath for installation" exit 1 }