Archived
1
0

Variable encapsulation

Co-authored-by: Asher <ash@coder.com>
This commit is contained in:
djarbz 2022-05-11 14:34:45 -05:00 committed by GitHub
parent 40f072a15d
commit de38960e27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ fi
# https://github.com/coder/code-server/issues/5177
chmod u+x ${ENTRYPOINTD}/*.sh
sudo chown -R ${USER} ${ENTRYPOINTD}/*
for f in ${ENTRYPOINTD}/*.sh; do
for f in "${ENTRYPOINTD}"/*.sh; do
echo "Running Entrypoint: ${f}"
bash "${f}"
done