diff options
author | Stefan Kangas <stefan@marxist.se> | 2020-12-31 12:11:31 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2020-12-31 12:11:31 +0100 |
commit | efe591143f3df326c11eb65f5aeea419405d4b90 (patch) | |
tree | b6de3651e4c9e6729f7f4104c5034134a07186bd /admin/update-copyright | |
parent | 46c4bcd3927d47b1d694d80087041ef0c0112477 (diff) | |
download | emacs-efe591143f3df326c11eb65f5aeea419405d4b90.tar.gz |
Fix some shellcheck linter warnings
* admin/diff-tar-files:
* admin/merge-gnulib:
* admin/merge-pkg-config:
* admin/update-copyright:
* build-aux/git-hooks/prepare-commit-msg:
* make-dist: Fix some shellcheck linter warnings.
Diffstat (limited to 'admin/update-copyright')
-rwxr-xr-x | admin/update-copyright | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/update-copyright b/admin/update-copyright index a70d7a3ff93..f392b09c10b 100755 --- a/admin/update-copyright +++ b/admin/update-copyright @@ -53,7 +53,7 @@ repo_files=$(git ls-files) && # . They are GMP files, maintained by the GMP project, with their own dates. # . Their format cannot withstand changing the contents of copyright strings. -updatable_files=$(find $repo_files \ +updatable_files=$(find "$repo_files" \ ! -name COPYING \ ! -name doclicense.texi \ ! -name gpl.texi \ @@ -74,4 +74,4 @@ updatable_files=$(find $repo_files \ ! -name 'mini-gmp.[ch]' \ -print) && -build-aux/update-copyright $updatable_files +build-aux/update-copyright "$updatable_files" |