Skip to content

Commit c297e27

Browse files
authored
correct quoting for Windows platform (#1618)
1 parent 9f81f09 commit c297e27

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tasks/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def _install_pulumi(ctx: Context):
119119

120120
# Check if gke-gcloud-auth-plugin is installed and install it if not
121121
def _install_gcloud_auth_plugin(ctx):
122-
res = ctx.run("gcloud components list --format=json --filter 'name: gke-gcloud-auth-plugin'", hide=True)
122+
res = ctx.run('gcloud components list --format=json --filter "name: gke-gcloud-auth-plugin"', hide=True)
123123
installed_component = json.loads(res.stdout)
124124
if installed_component[0]["state"]["name"] == "Installed":
125125
print("✅ gke-gcloud-auth-plugin is already installed")

0 commit comments

Comments
 (0)