style: the shebang must be on the first line (#1171)

See https://github.com/koalaman/shellcheck/wiki/SC1128
This commit is contained in:
Matt Boersma 2019-04-29 19:10:37 -06:00 коммит произвёл Azure Kubernetes Service Bot
Родитель 2b8b2ed884
Коммит 3b4891bcd2
3 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -1,7 +1,7 @@
# Script file to install the docker hello-world container
#!/bin/bash
# Script file to install the docker hello-world container
set -e
echo $(date) " - Starting Script"

Просмотреть файл

@ -1,4 +1,5 @@
#!/bin/bash
# Script file to run hello-world in bash
#!/bin/bash
echo "hello"
echo "hello"

Просмотреть файл

@ -18,7 +18,6 @@ SC1073
SC1090
SC1091
SC1113
SC1128
SC2001
SC2002
SC2004