1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-06-27 16:36:00 +00:00

Load custom.css only if exists

This commit is contained in:
Simounet 2020-01-29 22:26:00 +01:00
parent 62107f50d3
commit 33e3eeaec8
No known key found for this signature in database
GPG key ID: 77D3B7DC794EB770
5 changed files with 18 additions and 10 deletions

View file

@ -17,14 +17,14 @@ help: ## Display this help menu
clean: ## Clear the application cache
rm -rf var/cache/*
install: customcss ## Install wallabag with the latest version
install: ## Install wallabag with the latest version
@./scripts/install.sh $(ENV)
update: ## Update the wallabag installation to the latest version
@./scripts/update.sh $(ENV)
dev: ENV=dev
dev: build customcss ## Install the latest dev version
dev: build ## Install the latest dev version
@./scripts/dev.sh
run: ## Run the wallabag built-in server
@ -34,9 +34,6 @@ build: ## Run webpack
@npm install
@npm run build:$(ENV)
customcss:
@touch web/custom.css
prepare: clean ## Prepare database for testsuite
ifdef DB
cp app/config/tests/parameters_test.$(DB).yml app/config/parameters_test.yml