diff options
author | brodokk <brodokk@brodokk.space> | 2021-11-17 00:50:34 +0100 |
---|---|---|
committer | brodokk <brodokk@brodokk.space> | 2021-11-17 00:50:34 +0100 |
commit | 71253c98716d527405fb99396aa541328978c275 (patch) | |
tree | f8e19782efd4a421e4f205a10fa9252f79a74fb8 | |
parent | 4ee4e69e049910609e2b18279e15d42bc473e65e (diff) | |
download | neosvr_docker-71253c98716d527405fb99396aa541328978c275.tar.xz neosvr_docker-71253c98716d527405fb99396aa541328978c275.zip |
Use bash instead of sh
Diffstat (limited to '')
-rw-r--r-- | entrypoint.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/entrypoint.sh b/entrypoint.sh index 2c02ea7..16b19db 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash if [ -n "${INSTALL_APPS}" ]; then OLD_IFS=$IFS |