From 74b910adbb0cf3706c97c356793c380300584ec8 Mon Sep 17 00:00:00 2001 From: Noel Miller <4983138+noelmiller@users.noreply.github.com> Date: Wed, 13 Mar 2024 22:35:52 -0500 Subject: [PATCH] fix: put chmod back to original value lowercase x causes issues on the host when running the docker container --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 672d924..e7c579f 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -36,4 +36,4 @@ mkdir /github/workspace/build || true # Copy resulting iso to github workspace and fix permissions cp build/deploy.iso /github/workspace/build -chmod -R ugo=rwx /github/workspace/build +chmod -R ugo=rwX /github/workspace/build