Skip to content

Commit 827058d

Browse files
committed
checkpatch: Fix checkpatch.pl permissions
The latest checkpatch images complain: /checkpatch/checkpatch.sh: line 155: /checkpatch/checkpatch.pl: Permission denied Let's fix the permissions for the script we download. Fixes: e2a7f29 ("checkpatch: Remove upstream, GPL checkpatch.pl and spelling.txt") Signed-off-by: Quentin Monnet <[email protected]>
1 parent 769ae95 commit 827058d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

images/checkpatch/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN apk add --no-cache bash curl git jq moreutils patch perl
1616
RUN \
1717
curl -sSL --output /checkpatch/checkpatch.pl \
1818
"https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/plain/scripts/checkpatch.pl?h=${CHECKPATCH_VERSION}" && \
19-
chmod u+x /checkpatch/checkpatch.pl && \
19+
chmod a+x /checkpatch/checkpatch.pl && \
2020
curl -sSL --output /checkpatch/spelling.txt \
2121
"https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/plain/scripts/spelling.txt?h=${CHECKPATCH_VERSION}"
2222

0 commit comments

Comments
 (0)