From 2c0d32b603d2b786eb6210a1c6f25a73662bbb77 Mon Sep 17 00:00:00 2001 From: Sam Dowell Date: Thu, 20 Jun 2024 13:23:15 -0700 Subject: [PATCH] consistently use bash shebang for shell scripts This updates the build scripts to use a bash shebang for consistency with other scripts as well as better portability. If using a non-alpine BUILDIMAGE (e.g. debian) the build scripts are not valid sh syntax. --- build/build.sh | 2 +- build/test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/build.sh b/build/build.sh index 0aec5c8..8e5a939 100755 --- a/build/build.sh +++ b/build/build.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # Copyright 2016 The Kubernetes Authors. # diff --git a/build/test.sh b/build/test.sh index 72487a3..42a302f 100755 --- a/build/test.sh +++ b/build/test.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # Copyright 2016 The Kubernetes Authors. #