diff --git a/Makefile b/Makefile index 4182efe..fdf6ffc 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,10 @@ .PHONY: update-bootstrap update-bootstrap: - curl -L "https://cdn.jsdelivr.net/npm/bootstrap@5/dist/css/bootstrap.min.css" -o assets/bootstrap.min.css - curl -L "https://cdn.jsdelivr.net/npm/bootstrap@5/dist/js/bootstrap.min.js" -o assets/bootstrap.min.js - -.PHONY: build -build: - ./build.sh + curl -L "https://cdn.jsdelivr.net/npm/bootstrap@5/dist/css/bootstrap.min.css" -o static/assets/bootstrap.min.css + curl -L "https://cdn.jsdelivr.net/npm/bootstrap@5/dist/js/bootstrap.min.js" -o static/assets/bootstrap.min.js .PHONY: deploy deploy: - rsync -av dist desk:/var/www/balki.me + rsync -av public desk:/var/www/balki.me