Index: appengine/chromium_cq_status/makefile |
diff --git a/appengine/chromium_cq_status/makefile b/appengine/chromium_cq_status/makefile |
index 5f6b41f4e0eadf125bc95db6d6e9efec29b71446..ef2360cded51a05a69d39d5eb8a36f50c7f54354 100644 |
--- a/appengine/chromium_cq_status/makefile |
+++ b/appengine/chromium_cq_status/makefile |
@@ -2,6 +2,7 @@ |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
+APP_ID ?= chromium-cq-status |
Sergiy Byelozyorov
2016/07/01 17:13:06
why ?=
tandrii(chromium)
2016/07/01 18:56:55
this means set only if not set before. This allows
|
NPM_VERSION := $(shell npm --version 2>/dev/null) |
BOWER_VERSION := $(shell bower --version 2>/dev/null) |
GIT_REVISION := $(shell git rev-parse --short HEAD) |
@@ -22,6 +23,7 @@ single-test: check |
./node_modules/karma/bin/karma start --single-run |
deploy: |
- appcfg.py --oauth2 update app.yaml highend.yaml --version `git rev-parse --short HEAD` |
+ appcfg.py --oauth2 update app.yaml highend.yaml --version `git rev-parse --short HEAD` -A $(APP_ID) |
+ # appcfg.py -A $(APP_ID) update_dispatch --version `git rev-parse --short HEAD` |
Sergiy Byelozyorov
2016/07/01 17:13:06
looks like debug line to me... remove or uncomment
tandrii(chromium)
2016/07/01 18:56:55
not debug, wrote separately.
|
.PHONY: check test single-test |