aboutsummaryrefslogtreecommitdiffhomepage
path: root/GNUmakefile
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2019-11-19 14:25:41 +0100
committerGitHub <noreply@github.com>2019-11-19 14:25:41 +0100
commit48b0163d247554d7e2f1ec63b717c8216ea9ec59 (patch)
tree4c60a101a3fedd2b87a27e4771d6123be152153e /GNUmakefile
parent8668796106b856ca041512af27268ce6e49d2caf (diff)
parent7a4c375ebfae5aa43c663b1084acfb68f61b30b8 (diff)
downloadwallabag-48b0163d247554d7e2f1ec63b717c8216ea9ec59.tar.gz
wallabag-48b0163d247554d7e2f1ec63b717c8216ea9ec59.tar.zst
wallabag-48b0163d247554d7e2f1ec63b717c8216ea9ec59.zip
Merge pull request #4151 from ldidry/fix-4060
✨ Allow custom styles system wide
Diffstat (limited to 'GNUmakefile')
-rwxr-xr-xGNUmakefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 15d737db..865b35e8 100755
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -10,14 +10,14 @@ help: ## Display this help menu
10clean: ## Clear the application cache 10clean: ## Clear the application cache
11 rm -rf var/cache/* 11 rm -rf var/cache/*
12 12
13install: ## Install wallabag with the latest version 13install: customcss ## Install wallabag with the latest version
14 @./scripts/install.sh $(ENV) 14 @./scripts/install.sh $(ENV)
15 15
16update: ## Update the wallabag installation to the latest version 16update: ## Update the wallabag installation to the latest version
17 @./scripts/update.sh $(ENV) 17 @./scripts/update.sh $(ENV)
18 18
19dev: ENV=dev 19dev: ENV=dev
20dev: build ## Install the latest dev version 20dev: build customcss ## Install the latest dev version
21 @./scripts/dev.sh 21 @./scripts/dev.sh
22 22
23run: ## Run the wallabag built-in server 23run: ## Run the wallabag built-in server
@@ -27,6 +27,9 @@ build: ## Run webpack
27 @npm install 27 @npm install
28 @npm run build:$(ENV) 28 @npm run build:$(ENV)
29 29
30customcss:
31 @touch web/custom.css
32
30prepare: clean ## Prepare database for testsuite 33prepare: clean ## Prepare database for testsuite
31ifdef DB 34ifdef DB
32 cp app/config/tests/parameters_test.$(DB).yml app/config/parameters_test.yml 35 cp app/config/tests/parameters_test.$(DB).yml app/config/parameters_test.yml