From 87d93104ab91b0a76c6acd625b8756e36c31cad9 Mon Sep 17 00:00:00 2001 From: odweta Date: Sat, 12 Sep 2026 15:33:53 +0200 Subject: [PATCH] hotfix: deploy script css/ folder permissions --- deploy.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/deploy.sh b/deploy.sh index 2f2aac9..e650e29 100644 --- a/deploy.sh +++ b/deploy.sh @@ -12,5 +12,6 @@ sudo rm -fr $out/** # nuke the previous state sudo cp -r ./static/* $out/ # copy the source files into the prod. env. sudo cp -r ./static/css/* $out/css/ # copy the stylesheets over sudo chmod 444 $out/** # make the files read-only +sudo chmod 755 $out/css/ # give the css/ folder the correct permissions echo "[i] website deployed successfully!" \ No newline at end of file