File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -203,14 +203,16 @@ install: ## Open a Web Browser to the installation procedure
203
203
# Follow ./glances/outputs/static/README.md for more information
204
204
# ===================================================================
205
205
206
+ webui webui% : DIR = glances/outputs/static/
207
+
206
208
webui : # # Build the Web UI
207
- cd glances/outputs/static/ && npm ci && npm run build
209
+ cd $( DIR ) && npm ci && npm run build
208
210
209
211
webui-audit : # # Audit the Web UI
210
- cd glances/outputs/static/ && npm audit
212
+ cd $( DIR ) && npm audit
211
213
212
214
webui-audit-fix : # # Fix audit the Web UI
213
- cd glances/outputs/static/ && npm audit fix && npm ci && npm run build
215
+ cd $( DIR ) && npm audit fix && npm ci && npm run build
214
216
215
217
# ===================================================================
216
218
# Packaging
You can’t perform that action at this time.
0 commit comments