aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Alexis Degrugillier <aledeg@users.noreply.github.com> 2020-05-29 20:55:41 +0200
committerGravatar GitHub <noreply@github.com> 2020-05-29 20:55:41 +0200
commit19b94b648bf9e8dbc79ccc1765a295660a85e1f8 (patch)
treef3e2d7798db7dc25be36f46dc1fd287de1b00647 /Makefile
parentcf135073499856abb009fb9e6f297344745adf41 (diff)
Add a make rule to refresh feeds (#3014)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 99046df9a..1e5433a44 100644
--- a/Makefile
+++ b/Makefile
@@ -146,6 +146,9 @@ endif
@$(PHP) ./cli/manipulate.translation.php -a ignore -k $(key) -l $(lang)
@echo Key ignored.
+###########
+## TOOLS ##
+###########
.PHONY: rtl
rtl: ## Generate RTL CSS files
rtlcss -d p/themes && find . -type f -name '*.rtl.rtl.css' -delete
@@ -154,6 +157,10 @@ rtl: ## Generate RTL CSS files
pot: ## Generate POT templates for docs
cd docs && ../cli/translation-update.sh
+.PHONY: refresh
+refresh: ## Refresh feeds by fetching new messages
+ @$(PHP) ./app/actualize_script.php
+
##########
## HELP ##
##########