Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@mailbox.org>2021-05-05 10:04:08 +0300
committerRaimund Schlüßler <raimund.schluessler@mailbox.org>2021-05-05 10:04:08 +0300
commit3a5c30b2f70fa883bed86ebef937b0314a155e5c (patch)
tree236fb6d99fea343c143433fc8b011748fde1a493 /Makefile
parentc3b1123e9e2ee0699f6fc0111493e8ff4b95fc69 (diff)
Correctly delete build js on make clean
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 24a0d087..f37134d0 100644
--- a/Makefile
+++ b/Makefile
@@ -88,8 +88,9 @@ update-composer: composer.phar
# Removes the build directory and the compiled files
.PHONY: clean
clean:
- rm -f ./js/tasks.js
- rm -f ./js/tasks.js.map
+ rm -f ./js/tasks-main.js
+ rm -f ./js/tasks-main.js.map
+ rm -f ./js/tasks-main.js.LICENSE.txt
rm -rf $(build_directory)
# Same as clean but also removes dependencies installed by npm