about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--Makefile18
1 files changed, 9 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 1653ceb9..0cb35bd4 100644
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,7 @@ FILTER ?= .
 CWD = $(shell pwd)
 
 bold := $(shell tput bold)
-sgr0 := $(shell tput sgr0)
+normal := $(shell tput sgr0)
 
 default: test compile
 	@echo 'Run `make options` for a list of all options'
@@ -94,17 +94,17 @@ TEST_PATHS_MAIN = \
 TEST_PATH_CONFIG = ./ranger/config
 
 test_pylint:
-	@echo "$(bold)Running pylint...$(sgr0)"
+	@echo "$(bold)Running pylint...$(normal)"
 	pylint $(TEST_PATHS_MAIN)
 	pylint --rcfile=$(TEST_PATH_CONFIG)/.pylintrc $(TEST_PATH_CONFIG)
 
 test_flake8:
-	@echo "$(bold)Running flake8...$(sgr0)"
+	@echo "$(bold)Running flake8...$(normal)"
 	flake8 $(TEST_PATHS_MAIN) $(TEST_PATH_CONFIG)
 	@echo
 
 test_doctest:
-	@echo "$(bold)Running doctests...$(sgr0)"
+	@echo "$(bold)Running doctests...$(normal)"
 	@set -e; \
 	for FILE in $(shell grep -IHm 1 doctest -r ranger | grep $(FILTER) | cut -d: -f1); do \
 		echo "Testing $$FILE..."; \
@@ -113,26 +113,26 @@ test_doctest:
 	@echo
 
 test_pytest:
-	@echo "$(bold)Running py.test tests...$(sgr0)"
+	@echo "$(bold)Running py.test tests...$(normal)"
 	py.test tests
 	@echo
 
 test_py: test_pylint test_flake8 test_doctest test_pytest test_other
-	@echo "$(bold)Finished python and documentation tests!$(sgr0)"
+	@echo "$(bold)Finished python and documentation tests!$(normal)"
 	@echo
 
 test_shellcheck:
-	@echo "$(bold)Running shellcheck...$(sgr0)"
+	@echo "$(bold)Running shellcheck...$(normal)"
 	sed '2,$$s/^\(\s*\)#/\1/' ./ranger/data/scope.sh | shellcheck -a -
 	@echo
 
 test_other:
-	@echo "$(bold)Checking completeness of man page...$(sgr0)"
+	@echo "$(bold)Checking completeness of man page...$(normal)"
 	@tests/manpage_completion_test.py
 	@echo
 
 test: test_py test_shellcheck
-	@echo "$(bold)Finished testing: All tests passed!$(sgr0)"
+	@echo "$(bold)Finished testing: All tests passed!$(normal)"
 
 doc/ranger.1: doc/ranger.pod README.md
 	pod2man --stderr --center='ranger manual' \
8f1b8f7a61773905169b3883f1b494c786'>^
29452f8f ^
a3a73cf0 ^
29452f8f ^





a3a73cf0 ^
29452f8f ^









a3a73cf0 ^














































ef942bd2 ^









a3a73cf0 ^
ef942bd2 ^





a3a73cf0 ^

ef942bd2 ^















1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194