From fc047f09dd45ac4822fc11b109942f603573419c Mon Sep 17 00:00:00 2001 From: Joshua Potter Date: Sun, 17 Dec 2023 06:46:29 -0700 Subject: [PATCH] jekyll: Update permission on .bundle directory. --- specs/jekyll/runner | 1 + 1 file changed, 1 insertion(+) diff --git a/specs/jekyll/runner b/specs/jekyll/runner index 4cbf752..1cc673e 100755 --- a/specs/jekyll/runner +++ b/specs/jekyll/runner @@ -44,6 +44,7 @@ cp -r template/* "$BUILD" # Explicitly set permissions on all copied files. find "$BUILD" -type f -execdir chmod 644 {} + +find "$BUILD" -type d -execdir chmod 755 {} + # Replace the placeholder name found in the template files. sed -i "s//$NAME/g" "$BUILD/flake.nix"