There was an error while loading. Please reload this page.
1 parent 9f81f09 commit 9577cdaCopy full SHA for 9577cda
1 file changed
tasks/setup.py
@@ -119,7 +119,7 @@ def _install_pulumi(ctx: Context):
119
120
# Check if gke-gcloud-auth-plugin is installed and install it if not
121
def _install_gcloud_auth_plugin(ctx):
122
- res = ctx.run("gcloud components list --format=json --filter 'name: gke-gcloud-auth-plugin'", hide=True)
+ res = ctx.run('gcloud components list --format=json --filter "name: gke-gcloud-auth-plugin"', hide=True)
123
installed_component = json.loads(res.stdout)
124
if installed_component[0]["state"]["name"] == "Installed":
125
print("✅ gke-gcloud-auth-plugin is already installed")
0 commit comments