diff options
| author | Alejandro Colomar <alx.manpages@gmail.com> | 2022-05-30 22:14:58 +0200 |
|---|---|---|
| committer | Alejandro Colomar <alx.manpages@gmail.com> | 2022-05-30 22:15:00 +0200 |
| commit | 97e09fde6fb5c8323f4a0287ddb314bfe913a48f (patch) | |
| tree | 143ab1928574bd6f15290ba6710f837e51882db6 | |
| parent | 99e8398e30af022bbeab64599e439910326eccca (diff) | |
| download | man-pages-97e09fde6fb5c8323f4a0287ddb314bfe913a48f.tar.gz | |
remove_COLOPHON.sh: srcfix
SC2068 (error): Double quote array expansions to avoid
re-splitting elements.
Reported-by: shellcheck(1)
Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
| -rwxr-xr-x | scripts/remove_COLOPHON.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/remove_COLOPHON.sh b/scripts/remove_COLOPHON.sh index 780caab982..b044b216a0 100755 --- a/scripts/remove_COLOPHON.sh +++ b/scripts/remove_COLOPHON.sh @@ -24,5 +24,5 @@ # (http://www.gnu.org/licenses/gpl-2.0.html). # # -find $@ -not -type d \ +find "$@" -not -type d \ |xargs sed -i '/^.SH COLOPHON/,$d'; |
