Commit 930fbe08 authored by Mario Trangoni's avatar Mario Trangoni

shellcheck: Fix SC2034 issue

See, $ find . -name "*.sh" | xargs shellcheck -i SC2034 In ./roll-tarballs.sh line 34: NULL="" ^--^ SC2034: NULL appears unused. Verify use (or export if used externally). For more information: https://www.shellcheck.net/wiki/SC2034 -- NULL appears unused. Verify use (... Signed-off-by: 's avatarMario Trangoni <mjtrangoni@gmail.com>
parent 22b40e69
......@@ -31,7 +31,6 @@ usage() {
}
PROJECT="nx-libs"
NULL=""
test -d ".git" || usage
RELEASE="$1"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment