Move hash bang to first line.

For hash bang statements to take effect, they must be the first line
in a script.

Fixes #953.
This commit is contained in:
Adrian Mouat 2020-01-07 12:05:20 +00:00
parent 3b6411d83f
commit 9b629ac8c7
1 changed files with 2 additions and 1 deletions

View File

@ -1,3 +1,5 @@
#!/bin/bash
# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
@ -12,7 +14,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#!/bin/bash
set -e
if [ $# -lt 3 ]; then