summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAlejandro Colomar <alx.manpages@gmail.com>2022-05-30 22:14:58 +0200
committerAlejandro Colomar <alx.manpages@gmail.com>2022-05-30 22:15:00 +0200
commit97e09fde6fb5c8323f4a0287ddb314bfe913a48f (patch)
tree143ab1928574bd6f15290ba6710f837e51882db6 /scripts
parent99e8398e30af022bbeab64599e439910326eccca (diff)
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>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/remove_COLOPHON.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/remove_COLOPHON.sh b/scripts/remove_COLOPHON.sh
index 780caab98..b044b216a 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';