From 7f81db599032c485b6b7bfd8a1852c04bacc50ac Mon Sep 17 00:00:00 2001 From: Devon Mackay Date: Wed, 19 Sep 2018 13:23:47 -0400 Subject: [PATCH] Style fixes --- script/fix_permissions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/fix_permissions b/script/fix_permissions index 7645a0ab..1ec5acee 100755 --- a/script/fix_permissions +++ b/script/fix_permissions @@ -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