Skip to content

Commit

Permalink
[windows] Fix aws invocation (#11276)
Browse files Browse the repository at this point in the history
In Windows omnibus builds, call aws instead of aws.exe.

aws works with the current build image, and aws.exe won't work once we start installing awscli with pip on Windows.
  • Loading branch information
KSerrania authored Mar 14, 2022
1 parent 07f4241 commit 29460fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/ssm.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import os
import tempfile

ssm_command = "aws.exe ssm get-parameter --name {} --with-decryption --region us-east-1"
ssm_command = "aws ssm get-parameter --name {} --with-decryption --region us-east-1"
ssm_param_password = "keygen.dd_win_agent_codesign.password"
ssm_param_pfx_part1 = "keygen.dd_win_agent_codesign.pfx_b64_0"
ssm_param_pfx_part2 = "keygen.dd_win_agent_codesign.pfx_b64_1"
Expand Down

0 comments on commit 29460fc

Please sign in to comment.