chore: fix app-init.sh chown check

This commit is contained in:
Nicolas Giard 2024-05-24 16:41:19 -04:00 committed by GitHub
parent b951c80a4d
commit 96902bf3b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,7 +3,7 @@
WORKSPACEDIR="/workspace"
# Handle Linux host mounting the workspace dir as root
if [ ! -O "$WORKSPACEDIR/ietf" ]; then
if [ ! -O "${WORKSPACEDIR}/ietf" ]; then
sudo chown -R dev:dev $WORKSPACEDIR
fi