hotfix: deploy script css/ folder permissions

This commit is contained in:
odweta
2026-09-12 15:33:53 +02:00
parent 72738b4eb5
commit 87d93104ab
+1
View File
@@ -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/* $out/ # copy the source files into the prod. env.
sudo cp -r ./static/css/* $out/css/ # copy the stylesheets over sudo cp -r ./static/css/* $out/css/ # copy the stylesheets over
sudo chmod 444 $out/** # make the files read-only 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!" echo "[i] website deployed successfully!"