Skip to content

Commit

Permalink
fix install script template
Browse files Browse the repository at this point in the history
  • Loading branch information
masterfuzz committed Mar 27, 2024
1 parent 0f44739 commit 4a0d584
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion install-pulumi-plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var childProcess = require("child_process");

var args = process.argv.slice(2);

if (args.indexOf("v1.5.4") !== -1) {
if (args.indexOf("${VERSION}") !== -1) {
process.exit(0);
}

Expand Down
2 changes: 1 addition & 1 deletion sdk/scripts/install-pulumi-plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var childProcess = require("child_process");

var args = process.argv.slice(2);

if (args.indexOf("v1.5.4") !== -1) {
if (args.indexOf("v1.7.0") !== -1) {
process.exit(0);
}

Expand Down

0 comments on commit 4a0d584

Please sign in to comment.