diff --git a/deploy.sh b/deploy.sh index 42f5f06..2f2aac9 100644 --- a/deploy.sh +++ b/deploy.sh @@ -8,8 +8,9 @@ out=/var/www/html echo "[i] deploying website..." -sudo rm -fr $out/** # nuke the previous state -sudo cp -r ./static/* $out/ # copy the source files into the prod. env. -sudo chmod 444 $out/** # make the files read-only +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 echo "[i] website deployed successfully!" \ No newline at end of file