diff options
author | Brian Behlendorf <[email protected]> | 2023-10-10 13:31:15 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2023-10-10 13:31:15 -0700 |
commit | 822b32ee51ccf2e24a358e4927b4a218e9b81925 (patch) | |
tree | f3e10ad9e280f34df6e66f0780896549296ae946 | |
parent | bc29124b1bf90eae7e9539bcafeb109e4df821ac (diff) |
CI: Move perl script to dist_noinst_DATA
Everything listed in dist_noinst_SCRIPTS is assumed to be a shell
script, this generates a shellcheck SC1071 error since perl is not
supported. Move update_authors.pl to dist_noinst_DATA with the
other perl scripts.
Reviewed-by: Tony Hutter <[email protected]>
Reviewed-by: Rob N <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #15392
-rw-r--r-- | scripts/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.am b/scripts/Makefile.am index 8ec9ea4b5..b43bf97db 100644 --- a/scripts/Makefile.am +++ b/scripts/Makefile.am @@ -9,7 +9,6 @@ dist_noinst_SCRIPTS = \ %D%/man-dates.sh \ %D%/mancheck.sh \ %D%/paxcheck.sh \ - %D%/update_authors.pl \ %D%/zfs-tests-color.sh scripts_scripts = \ @@ -30,6 +29,7 @@ endif dist_noinst_DATA += \ %D%/cstyle.pl \ %D%/enum-extract.pl \ + %D%/update_authors.pl \ %D%/zfs2zol-patch.sed \ %D%/zol2zfs-patch.sed |