Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit c742857

Browse files
authored
Merge pull request #678 from github-for-unity/fixes/octorun-output
Fixing octorun output processing
2 parents 9fcd9fa + 6856f24 commit c742857

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

octorun/src/output.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ var outputResult = function (status, results, errors, preventExit) {
2424
process.stdout.write(endOfLine);
2525
}
2626
}
27+
else if (results.toString) {
28+
process.stdout.write(results.toString());
29+
process.stdout.write(endOfLine);
30+
}
2731
else {
2832
throw "Unsupported result output";
2933
}

octorun/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
46811135
1+
9fcd9faa

src/GitHub.Api/Installer/OctorunInstaller.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public class OctorunInstallDetails
102102
public const string DefaultZipMd5Url = "https://ghfvs-installer.github.com/unity/octorun/octorun.zip.md5";
103103
public const string DefaultZipUrl = "https://ghfvs-installer.github.com/unity/octorun/octorun.zip";
104104

105-
public const string PackageVersion = "46811135";
105+
public const string PackageVersion = "9fcd9faa";
106106
private const string PackageName = "octorun";
107107
private const string zipFile = "octorun.zip";
108108

src/GitHub.Api/Resources/octorun.zip

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:88514fe0aa33af8ccf81f31f4ca2d4e3b2e08df2f890bb1f18f8d9d5409f7a80
3-
size 219645
2+
oid sha256:ac6b09ebe88bb66f5aefdd262bd9cbf9819fd6a0b7f996acfa746dc33f4dbe74
3+
size 219653
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
070a4561bf70031ad54ca5884f97f546
1+
e562a8ccf9ef1e1d00a2e9a72f8234cf

0 commit comments

Comments
 (0)