Skip to content

Commit 05d4cc2

Browse files
authored
Move shebang to top of file. (#458)
It otherwise has no effect, causing the default shell to be tried (which is /bin/sh on my home system).
1 parent 0afcad8 commit 05d4cc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: lint.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/bash
2+
13
# Copyright 2017 Google Inc.
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -12,8 +14,6 @@
1214
# See the License for the specific language governing permissions and
1315
# limitations under the License.
1416

15-
#!/bin/bash
16-
1717
function lintAllFiles () {
1818
echo "Running linter on module $1"
1919
pylint --disable=$2 $1

0 commit comments

Comments
 (0)