Style fixes

This commit is contained in:
Devon Mackay 2018-09-19 13:23:47 -04:00 committed by Patrick Smith
parent 5a6f1de4dd
commit 7f81db5990

View File

@ -17,8 +17,8 @@ if [ "${APP_USER}x" = "x" ] || [ "${APP_GROUP}x" = "x" ]; then
fi
chown "${APP_USER}:${APP_GROUP}" .
chown "${APP_USER}:${APP_GROUP}" *
chown "${APP_USER}:${APP_GROUP}" ./*
for subdir in $(find . -type d -maxdepth 1 | grep -Ee '.[^/]' | grep -Fve 'node_modules')
do
chown "${APP_USER}:${APP_GROUP}" -R ${subdir}
chown "${APP_USER}:${APP_GROUP}" -R "${subdir}"
done