Skip to content
This repository has been archived by the owner on Aug 11, 2024. It is now read-only.

Commit

Permalink
escape
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenHodgson committed Jul 18, 2024
1 parent feb5058 commit 7d5611d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26209,7 +26209,7 @@ async function Run() {
await exec.exec(`"${licenseClient}" --version`);

var licenseType = core.getInput('license-type');
var args = `--activate-ulf --username ${username} --password ${password}`;
var args = `--activate-ulf --username "${username}" --password "${password}"`;

if (licenseType.toLowerCase().startsWith('pro')) {
var serial = core.getInput('serial');
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/activate.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ async function Run() {
await exec.exec(`"${licenseClient}" --version`);

var licenseType = core.getInput('license-type');
var args = `--activate-ulf --username ${username} --password ${password}`;
var args = `--activate-ulf --username "${username}" --password "${password}"`;

if (licenseType.toLowerCase().startsWith('pro')) {
var serial = core.getInput('serial');
Expand Down

0 comments on commit 7d5611d

Please sign in to comment.