Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenHodgson committed Aug 6, 2024
1 parent 8df5552 commit bc2b25b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
5 changes: 1 addition & 4 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28738,7 +28738,7 @@ async function getLicensingClient() {
// Linux: <UnityEditorDir>/Data/Resources/Licensing/Client/
const rootEditorPath = await GetEditorRootPath(editorPath);
core.debug(`Root Editor Path: ${rootEditorPath}`);
const globs = [rootEditorPath, '**'];
const globs = [rootEditorPath];
switch (process.platform) {
case 'win32':
globs.push('Data\\Resources\\Licensing\\Client\\Unity.Licensing.Client.exe');
Expand Down Expand Up @@ -28774,9 +28774,6 @@ async function execWithMask(args) {
listeners: {
stdout: (data) => {
output += data.toString();
},
stderr: (data) => {
output += data.toString();
}
}
});
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

5 changes: 1 addition & 4 deletions src/licensing-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ async function getLicensingClient() {
// Linux: <UnityEditorDir>/Data/Resources/Licensing/Client/
const rootEditorPath = await GetEditorRootPath(editorPath);
core.debug(`Root Editor Path: ${rootEditorPath}`);
const globs = [rootEditorPath, '**'];
const globs = [rootEditorPath];
switch (process.platform) {
case 'win32':
globs.push('Data\\Resources\\Licensing\\Client\\Unity.Licensing.Client.exe');
Expand Down Expand Up @@ -78,9 +78,6 @@ async function execWithMask(args) {
listeners: {
stdout: (data) => {
output += data.toString();
},
stderr: (data) => {
output += data.toString();
}
}
});
Expand Down

0 comments on commit bc2b25b

Please sign in to comment.