From 52444cd566cc9715c6c312e03cb2225e0ec07cd9 Mon Sep 17 00:00:00 2001 From: Appu Goundan Date: Thu, 21 Jul 2016 13:01:00 -0700 Subject: [PATCH] fix gcloud command, add deprecation to messaging --- GCLOUD.md | 2 ++ src/main/groovy/com/google/gcloud/task/app/DeployTask.groovy | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/GCLOUD.md b/GCLOUD.md index bbd5ca6..5fa7110 100644 --- a/GCLOUD.md +++ b/GCLOUD.md @@ -1,6 +1,8 @@ ![Google Cloud Platform Logo](https://cloud.google.com/_static/images/gcp-logo.png) # Gradle GCloud [preview] Plugin +*This plugin is deprecated and may not work for you, try using gcloud directly* + This plugin provides tasks for running and deploying App Engine applications using the gcloud command line tool. *Caution:* This plugin is experimental and may change without notice diff --git a/src/main/groovy/com/google/gcloud/task/app/DeployTask.groovy b/src/main/groovy/com/google/gcloud/task/app/DeployTask.groovy index 227f0e8..0f21c03 100644 --- a/src/main/groovy/com/google/gcloud/task/app/DeployTask.groovy +++ b/src/main/groovy/com/google/gcloud/task/app/DeployTask.groovy @@ -25,7 +25,7 @@ class DeployTask extends AppTask { @Override List getCommand() { - ['preview','app','deploy'] + ['app','deploy'] } @Override