From 2c1c51561edfe1103d981a3f894a24dc4f098114 Mon Sep 17 00:00:00 2001 From: Daniel Marzini <44803752+danielmarzini@users.noreply.github.com> Date: Thu, 19 Dec 2024 18:07:29 +0100 Subject: [PATCH] [slurm-on-gke] container image fix (#917) Update docker-entrypoint.sh Fix shebang line position --- slurm-on-gke/image/docker-entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slurm-on-gke/image/docker-entrypoint.sh b/slurm-on-gke/image/docker-entrypoint.sh index 66ebac5d6..a9e7e36de 100644 --- a/slurm-on-gke/image/docker-entrypoint.sh +++ b/slurm-on-gke/image/docker-entrypoint.sh @@ -1,3 +1,4 @@ +#!/bin/bash # MIT License # Copyright (c) 2019 Giovanni Torres @@ -20,7 +21,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -#!/bin/bash set -euo pipefail function start_munge(){ @@ -143,4 +143,4 @@ then else exec "$@" -fi \ No newline at end of file +fi