martinzink commented on code in PR #1504:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1504#discussion_r1124785317


##########
docker/DockerVerify.sh:
##########
@@ -17,17 +17,114 @@
 
 set -e
 
-if [[ $# -lt 2 ]]; then
-  echo "Usage:"
-  echo "  ./DockerVerify.sh <MINIFI_VERSION> <FEATURE_PATH>"
-  exit 1
-fi
+die()
+{
+  local _ret="${2:-1}"
+  test "${_PRINT_HELP:-no}" = yes && print_help >&2
+  echo "$1" >&2
+  exit "${_ret}"
+}
+
+
+begins_with_short_option()
+{
+  local first_option all_short_options='h'
+  first_option="${1:0:1}"
+  test "$all_short_options" = "${all_short_options/$first_option/}" && return 
1 || return 0
+}

Review Comment:
   i've removed it in 
https://github.com/apache/nifi-minifi-cpp/pull/1504/commits/79133832db22291ca578a1ec46d552d52c9f9f10



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@nifi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to