Skip to content

Commit

Permalink
environment
Browse files Browse the repository at this point in the history
Signed-off-by: Francis <[email protected]>
  • Loading branch information
colifran committed Oct 12, 2023
1 parent 5d7c836 commit 2d3014d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/signing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,11 @@ export class SignNuGetWithSigner extends Construct implements ISigner {
};

if (props.signerProfileName) {
environment['SIGNER_PROFILE_NAME'] = props.signerProfileName;
environment.SIGNER_PROFILE_NAME = props.signerProfileName;
}

if (props.signerProfileOwner) {
environment['SIGNER_PROFILE_OWNER'] = props.signerProfileOwner;
environment.SIGNER_PROFILE_OWNER = props.signerProfileOwner;
}

const shellable = new Shellable(this, 'Default', {
Expand Down

0 comments on commit 2d3014d

Please sign in to comment.