Skip to content

Commit

Permalink
Add missing ;
Browse files Browse the repository at this point in the history
  • Loading branch information
Frassle committed Nov 4, 2022
1 parent cc528e1 commit f36b43d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/Pulumi/Deployment/Deployment_RegisterResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public partial class Deployment
Log.Debug($"Registering resource start: t={type}, name={name}, custom={custom}, remote={remote}");

if (options.DeletedWith != null && !(await MonitorSupportsDeletedWith().ConfigureAwait(false))) {
throw new Exception("The Pulumi CLI does not support the DeletedWith option. Please update the Pulumi CLI.")
throw new Exception("The Pulumi CLI does not support the DeletedWith option. Please update the Pulumi CLI.");
}

var request = CreateRegisterResourceRequest(type, name, custom, remote, options);
Expand Down

0 comments on commit f36b43d

Please sign in to comment.