Revision: 8e0b6ec48047
Branch: default
Author: Jason Robbins <
jrob...@chromium.org>
Date: Thu Nov 6 19:58:23 2014 UTC
Log: Fix 'make update' for initial deployments with a new GAE app-id.
This is needed because a new app must deploy the frontend before the
backends.
On behalf of
jfred...@gmail.com.
Review URL:
https://codereview.appspot.com/170000043/
https://code.google.com/p/rietveld/source/detail?r=8e0b6ec48047
Modified:
/Makefile
=======================================
--- /Makefile Tue Aug 12 23:52:11 2014 UTC
+++ /Makefile Thu Nov 6 19:58:23 2014 UTC
@@ -64,7 +64,7 @@
@echo "---[Updating REVISION]---"
@echo "$(VERSION_TAG)" >REVISION
-update: update_revision mapreduce update_backend
+update_frontend: update_revision mapreduce
@echo "---[Updating $(APPID)]---"
$(APPCFG) $(APPCFG_FLAGS) update . --oauth2 --application $(APPID)
--version $(VERSION)
@@ -72,6 +72,8 @@
@echo "---[Updating backend $(APPID)]---"
$(APPCFG) $(APPCFG_FLAGS) backends update . --oauth2 --application
$(APPID) --version $(VERSION)
+update: update_frontend update_backend
+
upload: update
deploy: update