From df11a8a3ba62ae73d524b99adb5608b6f68688ed Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Thu, 11 Jan 2024 17:26:58 -0800 Subject: [PATCH] fix playwright browsers path not having hidden dir inside chowned --- bin/docker_entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/docker_entrypoint.sh b/bin/docker_entrypoint.sh index 8c6e804d..7e7a99c3 100755 --- a/bin/docker_entrypoint.sh +++ b/bin/docker_entrypoint.sh @@ -95,7 +95,7 @@ fi export PLAYWRIGHT_BROWSERS_PATH="${PLAYWRIGHT_BROWSERS_PATH:-/browsers}" mkdir -p "$PLAYWRIGHT_BROWSERS_PATH/permissions_test_safe_to_delete" chown $PUID:$PGID "$PLAYWRIGHT_BROWSERS_PATH" -chown $PUID:$PGID "$PLAYWRIGHT_BROWSERS_PATH"/* +chown $PUID:$PGID "$PLAYWRIGHT_BROWSERS_PATH"/*.* rm -Rf "$PLAYWRIGHT_BROWSERS_PATH/permissions_test_safe_to_delete"