In /usr/bin/mh_linkrepojar line 19: . /usr/share/maven-repo-helper/mh_lib.sh ^-- SC1091: Not following: /usr/share/maven-repo-helper/mh_lib.sh was not specified as input (see shellcheck -x). In /usr/bin/mh_linkrepojar line 68: if [[ ! -z "$VERBOSE" || "$DH_VERBOSE" = "1" ]]; then ^-- SC2236: Use -n instead of ! -z. In /usr/bin/mh_linkrepojar line 72: mh_cleanpom $DH_OPTS $CLEAN_ARGS $POM debian/.mh/pom.xml debian/.mh/pom.properties ^------^ SC2086: Double quote to prevent globbing and word splitting. ^---------^ SC2086: Double quote to prevent globbing and word splitting. ^--^ SC2086: Double quote to prevent globbing and word splitting. Did you mean: mh_cleanpom "$DH_OPTS" "$CLEAN_ARGS" "$POM" debian/.mh/pom.xml debian/.mh/pom.properties In /usr/bin/mh_linkrepojar line 73: source debian/.mh/pom.properties ^-----------------------^ SC1091: Not following: debian/.mh/pom.properties was not specified as input (see shellcheck -x). In /usr/bin/mh_linkrepojar line 75: groupPath=$(echo $groupId | tr . / ) ^------^ SC2154: groupId is referenced but not assigned. ^------^ SC2086: Double quote to prevent globbing and word splitting. Did you mean: groupPath=$(echo "$groupId" | tr . / ) In /usr/bin/mh_linkrepojar line 77: VERSIONED_JAR_NAME="${artifactId}-${version}.jar" ^-----------^ SC2154: artifactId is referenced but not assigned. ^--------^ SC2154: version is referenced but not assigned. In /usr/bin/mh_linkrepojar line 78: if [ ! -z "$CLASSIFIER" ]; then ^-- SC2236: Use -n instead of ! -z. In /usr/bin/mh_linkrepojar line 94: if [[ ! -z "$VERBOSE" || "$DH_VERBOSE" = "1" ]]; then ^-- SC2236: Use -n instead of ! -z. In /usr/bin/mh_linkrepojar line 97: dh_link $DH_OPTS -p${PACKAGE} ${src} ${dest} ^------^ SC2086: Double quote to prevent globbing and word splitting. ^--------^ SC2086: Double quote to prevent globbing and word splitting. ^----^ SC2086: Double quote to prevent globbing and word splitting. ^-----^ SC2086: Double quote to prevent globbing and word splitting. Did you mean: dh_link "$DH_OPTS" -p"${PACKAGE}" "${src}" "${dest}" In /usr/bin/mh_linkrepojar line 101: for (( i=1; i < $ARGC; i++ )); do ^---^ SC2004: $/${} is unnecessary on arithmetic variables. For more information: https://www.shellcheck.net/wiki/SC2154 -- artifactId is referenced but not ... https://www.shellcheck.net/wiki/SC1091 -- Not following: /usr/share/maven-r... https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...