Skip to content

Commit

Permalink
consistently use bash shebang for shell scripts
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
sdowell committed Jun 20, 2024
1 parent efd8ecf commit 2c0d32b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
#
# Copyright 2016 The Kubernetes Authors.
#
Expand Down
2 changes: 1 addition & 1 deletion build/test.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
#
# Copyright 2016 The Kubernetes Authors.
#
Expand Down

0 comments on commit 2c0d32b

Please sign in to comment.