lint: Fix false positive

shellcheck interprets the single-quoted string as arguments to echo, not
the string that echo echos. Switching to double quotes fixes the lint.
This commit is contained in:
Jack Grigg 2021-04-01 14:30:35 +13:00
parent a1903d2644
commit fb38cf0d90
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ DOWNLOAD_URL="https://download.z.cash/downloads"
IPFS_HASH="/ipfs/QmXRHVGLQBiKwvNq7c2vPxAKz1zRVmMYbmt7G5TQss7tY7"
SHA256CMD="$(command -v sha256sum || echo shasum)"
SHA256ARGS="$(command -v sha256sum >/dev/null || echo '-a 256')"
SHA256ARGS="$(command -v sha256sum >/dev/null || echo \"-a 256\")"
WGETCMD="$(command -v wget || echo '')"
IPFSCMD="$(command -v ipfs || echo '')"