File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 5
5
# - make # Automatically build an HTML local version
6
6
# - make todo # To list remaining tasks and show current progression
7
7
# - make verifs # To check for correctness: wrapping, spelling
8
- # - make wrap # To check for wrapping
8
+ # - make wrap # To rewrap modified files
9
9
# - make spell # To check for spelling
10
10
# - make clean # To remove build artifacts
11
11
# - make fuzzy # To find fuzzy strings
@@ -106,8 +106,8 @@ todo: ensure_prerequisites
106
106
107
107
.PHONY : wrap
108
108
wrap : ensure_prerequisites
109
- @echo " Verify wrapping"
110
- powrap --check --quiet * .po ** / * .po
109
+ @echo " Re wrapping all files "
110
+ powrap -m
111
111
112
112
SRCS = $(shell git diff --name-only $(BRANCH ) | grep '.po$$')
113
113
# foo/bar.po => $(POSPELL_TMP_DIR)/foo/bar.po.out
@@ -126,7 +126,8 @@ fuzzy: ensure_prerequisites
126
126
potodo -f --exclude venv .venv $(EXCLUDED )
127
127
128
128
.PHONY : verifs
129
- verifs : wrap spell
129
+ verifs : spell
130
+ powrap --check --quiet * .po * /* .po
130
131
131
132
.PHONY : clean
132
133
clean :
You can’t perform that action at this time.
0 commit comments