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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2019-05-08 19:08:03 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2019-05-08 19:08:03 +0300
commit8d5504d7d8e6cc945d1e130febbe4b1755296464 (patch)
treefd842668e111603d3e6183ba76369bc730029d58 /Makefile
parentad7caab88c5eb545ef9b5f34df99d106200b116f (diff)
Do not rebuild JavaScript files before packing a release
As the JavaScript files are versioned again they should not be rebuilt before packing a release; otherwise the JavaScript files in the package could be different than the ones in the version control system. As the JavaScript files are no longer built it is not needed either to set up the development environment; however, it is still necessary to remove the build directory before packaging the release, so this is now explicitly done. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bf4093f32..612707485 100644
--- a/Makefile
+++ b/Makefile
@@ -72,7 +72,8 @@ create-tag:
git tag -a v$(version) -m "Tagging the $(version) release."
git push origin v$(version)
-appstore: dev-setup build-js-production
+appstore:
+ rm -rf $(build_dir)
mkdir -p $(sign_dir)
rsync -a \
--exclude=bower.json \