From 84da5e4b6425098efb1971861e8905dde3434776 Mon Sep 17 00:00:00 2001 From: Rich Gowman Date: Thu, 7 May 2020 14:51:44 -0400 Subject: [PATCH] Move shebang to top of file. It otherwise has no effect, causing the default shell to be tried (which is /bin/sh on my home system). --- lint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lint.sh b/lint.sh index 0fd5058a3..5e65862f3 100755 --- a/lint.sh +++ b/lint.sh @@ -1,3 +1,5 @@ +#!/bin/bash + # Copyright 2017 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,8 +14,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -#!/bin/bash - function lintAllFiles () { echo "Running linter on module $1" pylint --disable=$2 $1