diff options
author | fanquake <fanquake@gmail.com> | 2021-12-01 10:44:32 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-12-01 10:44:59 +0800 |
commit | c9d7d0a653910fa3f2dc40e4355c638ec3f0fcb5 (patch) | |
tree | e107232391bb956ced9b5b8dfa5d2c40440e97f9 /contrib/guix/guix-clean | |
parent | aef8c7cf82cff24ddd88fab0a3c5fb93de467886 (diff) | |
parent | 5202bd1dc0942953c415ef39c14ffd48cbaab6b9 (diff) |
Merge bitcoin/bitcoin#23635: test: Bump shellcheck version to 0.8.0
5202bd1dc0942953c415ef39c14ffd48cbaab6b9 test: Bump shellcheck version to 0.8.0 (Hennadii Stepanov)
Pull request description:
Among [added](https://github.com/koalaman/shellcheck/blob/master/CHANGELOG.md#v080---2021-11-06) rules, SC2295 could be [useful](https://github.com/bitcoin/bitcoin/pull/23506#issuecomment-982201468) for us.
ACKs for top commit:
dongcarl:
Code Review ACK 5202bd1dc0942953c415ef39c14ffd48cbaab6b9
fanquake:
ACK 5202bd1dc0942953c415ef39c14ffd48cbaab6b9 - would have rather this just been a part of #23506 to avoid another PR and pointless rebasing.
Tree-SHA512: fd7ff801c71af03c5a5b2823b7daba25a430b3ead5e5e50a3663961ee2223e55d322aec91d79999814cd35bd7ed6e9415a0b797718ceb8c0b1dbdbb40c336b82
Diffstat (limited to 'contrib/guix/guix-clean')
-rwxr-xr-x | contrib/guix/guix-clean | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/guix/guix-clean b/contrib/guix/guix-clean index 9fa17191e8..9af0a793cf 100755 --- a/contrib/guix/guix-clean +++ b/contrib/guix/guix-clean @@ -34,7 +34,7 @@ check_tools cat mkdir make git guix # under_dir() { local path_residue - path_residue="${2##${1}}" + path_residue="${2##"${1}"}" if [ -z "$path_residue" ] || [ "$path_residue" = "$2" ]; then return 1 else |