fix paths in Makefile

pull/211/head
meeb 2021-10-15 20:17:26 +11:00
parent 936800992c
commit 4f163f2f2c
1 changed files with 5 additions and 5 deletions

View File

@ -8,17 +8,17 @@ all: clean build
dev:
$(python) app/manage.py runserver
$(python) tubesync/manage.py runserver
build:
mkdir -p app/media
mkdir -p app/static
$(python) app/manage.py collectstatic --noinput
mkdir -p tubesync/media
mkdir -p tubesync/static
$(python) tubesync/manage.py collectstatic --noinput
clean:
rm -rf app/static
rm -rf tubesync/static
container: clean