Skip to content

Commit

Permalink
lint check to use bash interpreter
Browse files Browse the repository at this point in the history
The check-lint script uses some bash features, therefore it needs to be
specified with shebang. Because on some platforms this script may not
work properly. For example, Ubuntu and `dash` interpreter which is used
by some of our CIs.

Signed-off-by: Jan Richter <[email protected]>
  • Loading branch information
richtja committed Oct 3, 2024
1 parent 2f53ec2 commit 70431d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion check-lint
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/bash -e

TOOL_NAME=pylint
TOOL_CMD="python3 -m $TOOL_NAME"
Expand Down

0 comments on commit 70431d2

Please sign in to comment.