bin/_log.sh: Add shebang to please shellcheck (#4437)

Signed-off-by: Joakim Roubert <joakimr@axis.com>
This commit is contained in:
Joakim Roubert 2020-05-20 18:55:51 +02:00 committed by GitHub
parent 31e33d18d3
commit 960ce556ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,6 @@ jobs:
run: | run: |
find ./bin -type f \ find ./bin -type f \
! -name docker-build-proxy \ ! -name docker-build-proxy \
! -name _log.sh \
! -name minikube-start-hyperv.bat \ ! -name minikube-start-hyperv.bat \
! -name test-cleanup \ ! -name test-cleanup \
! -name _test-run.sh \ ! -name _test-run.sh \
@ -95,4 +94,4 @@ jobs:
# actions/checkout@v2 # actions/checkout@v2
uses: actions/checkout@722adc6 uses: actions/checkout@722adc6
- name: Markdown lint - name: Markdown lint
run: bin/markdownlint-all run: bin/markdownlint-all

View File

@ -1,3 +1,4 @@
#!/bin/sh
set -eu set -eu
# build debug logging is disabled by default; enable with BUILD_DEBUG=1 # build debug logging is disabled by default; enable with BUILD_DEBUG=1