Skip to content

Commit ebc0b9e

Browse files
Repalce sh by bash since the syntax used is not supported by sh
... sh does not support the syntax for boolean expressions using [[ ]] and the string replacement in variables (${INPUT_PLUGINS// /})
1 parent aa7b3b8 commit ebc0b9e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

dockerhub/entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
set -e
44

@@ -19,7 +19,7 @@ fi
1919

2020
echo "running entrypoint command(s)"
2121

22-
response=$(sh -c " ${INPUT_COMMAND}")
22+
response=$(bash -c " ${INPUT_COMMAND}")
2323

2424
echo "response<<EOF" >> "${GITHUB_OUTPUT}"
2525
echo "$response" >> "${GITHUB_OUTPUT}"

0 commit comments

Comments
 (0)