Skip to content

Commit

Permalink
chore: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
adrians5j committed Oct 8, 2021
1 parent 139d1c1 commit 79027c6
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions packages/pulumi-sdk/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,17 +100,13 @@ export class Pulumi {

if (installed) {
const { version } = require("@pulumi/aws/package.json");
await execa(
this.pulumiBinaryPath,
["plugin", "install", "resource", "aws", version],
{
stdio: "inherit",
env: {
PULUMI_HOME: this.pulumiFolder,
PULUMI_SKIP_UPDATE_CHECK: "true"
}
await execa(this.pulumiBinaryPath, ["plugin", "install", "resource", "aws", version], {
stdio: "inherit",
env: {
PULUMI_HOME: this.pulumiFolder,
PULUMI_SKIP_UPDATE_CHECK: "true"
}
);
});
}

return installed;
Expand Down

0 comments on commit 79027c6

Please sign in to comment.