We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b686b14 commit 3d3949aCopy full SHA for 3d3949a
Makefile
@@ -8,6 +8,7 @@ aw-webui:
8
ifeq ($(SKIP_WEBUI),true) # Skip building webui if SKIP_WEBUI is true
9
@echo "Skipping building webui"
10
else
11
+ rm -rf aw_server/static/*
12
make --directory=aw-webui build DEV=$(DEV)
13
cp -r aw-webui/dist/* aw_server/static/
14
# Needed for https://github.com/ActivityWatch/activitywatch/pull/274, works around https://github.com/pypa/pip/issues/6279
@@ -30,6 +31,7 @@ typecheck:
30
31
32
package:
33
python -m aw_server.__about__
34
+ rm -rf dist
35
pyinstaller aw-server.spec --clean --noconfirm
36
37
PYFILES=$(shell find . -name '*.py')
0 commit comments