Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 13 additions & 7 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36062,13 +36062,19 @@ async function getLatestHubVersion() {
}
}
const ignoredLines = [
`This error originated either by throwing inside of an async function without a catch block`,
`Unexpected error attempting to determine if executable file exists`,
`dri3 extension not supported`,
`Failed to connect to the bus:`,
`Checking for beta autoupdate feature for deb/rpm distributions`,
`Found package-type: deb`,
`XPC error for connection com.apple.backupd.sandbox.xpc: Connection invalid`
'This error originated either by throwing inside of an async function without a catch block',
'Unexpected error attempting to determine if executable file exists',
'dri3 extension not supported',
'Failed to connect to the bus:',
'Checking for beta autoupdate feature for deb/rpm distributions',
'Found package-type: deb',
'XPC error for connection com.apple.backupd.sandbox.xpc: Connection invalid',
'Error: No modules found to install.',
'Failed to execute the command due the following, please see \'-- --headless help\' for assistance.',
'Invalid key: The GraphQL query at the field at',
'You have to request `id` or `_id` fields for all selection sets or create a custom `keys` config for `UnityReleaseLabel`.',
'Entities without keys will be embedded directly on the parent entity. If this is intentional, create a `keys` config for `UnityReleaseLabel` that always returns null.',
'https://bit.ly/2XbVrpR#15'
];
async function execUnityHub(args) {
if (!hubPath) {
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "unity-setup",
"version": "1.3.3",
"version": "1.3.4",
"description": "A GitHub action for setting up the Unity Game Engine for CI/CD workflows.",
"author": "Buildalon",
"license": "MIT",
Expand Down
20 changes: 13 additions & 7 deletions src/unity-hub.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,13 +218,19 @@ async function getLatestHubVersion(): Promise<semver.SemVer | undefined> {
}

const ignoredLines = [
`This error originated either by throwing inside of an async function without a catch block`,
`Unexpected error attempting to determine if executable file exists`,
`dri3 extension not supported`,
`Failed to connect to the bus:`,
`Checking for beta autoupdate feature for deb/rpm distributions`,
`Found package-type: deb`,
`XPC error for connection com.apple.backupd.sandbox.xpc: Connection invalid`
'This error originated either by throwing inside of an async function without a catch block',
'Unexpected error attempting to determine if executable file exists',
'dri3 extension not supported',
'Failed to connect to the bus:',
'Checking for beta autoupdate feature for deb/rpm distributions',
'Found package-type: deb',
'XPC error for connection com.apple.backupd.sandbox.xpc: Connection invalid',
'Error: No modules found to install.',
'Failed to execute the command due the following, please see \'-- --headless help\' for assistance.',
'Invalid key: The GraphQL query at the field at',
'You have to request `id` or `_id` fields for all selection sets or create a custom `keys` config for `UnityReleaseLabel`.',
'Entities without keys will be embedded directly on the parent entity. If this is intentional, create a `keys` config for `UnityReleaseLabel` that always returns null.',
'https://bit.ly/2XbVrpR#15'
];

async function execUnityHub(args: string[]): Promise<string> {
Expand Down