remove unnecessary chmod+x, file is marked executable in snowball git

This commit is contained in:
Robert Muir 2024-03-28 16:43:47 -04:00
parent 3553769463
commit a7e916223c
No known key found for this signature in database
GPG Key ID: 817AE1DD322D7ECA
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ set -eEuo pipefail
# generate stuff with existing makefile, just 'make' will try to do crazy stuff with e.g. python
# and likely fail. so only ask for our specific target.
(cd ${SRCDIR} && chmod a+x libstemmer/mkalgorithms.pl && make dist_libstemmer_java)
(cd ${SRCDIR} && make dist_libstemmer_java)
for file in "SnowballStemmer.java" "Among.java" "SnowballProgram.java"; do
# add license header to files since they have none, otherwise rat will flip the fuck out