any way to install the old pulumi version temporar...
# general
b
any way to install the old pulumi version temporarily? I upgraded to .16 using the .sh file method, but now I have some hanging resources when the names changed assignment->Assignment.. was hoping to go back to old version and delete them then upgrade and refresh/redeploy
b
You can install any specific version of the CLI like this:
curl -L <https://get.pulumi.com/> | bash -s -- --version 0.15.4
But the change you're running into should be affected by the CLI version, so you might also need to edit your package.json to change your versions constraints back to something like ^0.15.0 and re-restore.
b
ok thank you
got it 👍
b
🙌