correcting bug with async env

pull/496/head
Frostebite 2023-01-21 01:06:04 +00:00
parent 540d271357
commit 11a35fd3df
3 changed files with 3 additions and 3 deletions

2
dist/index.js generated vendored
View File

@ -5946,7 +5946,7 @@ class AsyncWorkflow {
try { try {
cloud_runner_logger_1.default.log(`Cloud Runner is running async mode`); cloud_runner_logger_1.default.log(`Cloud Runner is running async mode`);
const asyncEnvironmentVariable = new cloud_runner_environment_variable_1.default(); const asyncEnvironmentVariable = new cloud_runner_environment_variable_1.default();
asyncEnvironmentVariable.name = `async`; asyncEnvironmentVariable.name = `GAMECI_ASYNC`;
asyncEnvironmentVariable.value = `true`; asyncEnvironmentVariable.value = `true`;
let output = ''; let output = '';
output += yield cloud_runner_1.default.Provider.runTaskInWorkflow(cloud_runner_1.default.buildParameters.buildGuid, `ubuntu`, `apt-get update > /dev/null output += yield cloud_runner_1.default.Provider.runTaskInWorkflow(cloud_runner_1.default.buildParameters.buildGuid, `ubuntu`, `apt-get update > /dev/null

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -12,7 +12,7 @@ export class AsyncWorkflow {
try { try {
CloudRunnerLogger.log(`Cloud Runner is running async mode`); CloudRunnerLogger.log(`Cloud Runner is running async mode`);
const asyncEnvironmentVariable = new CloudRunnerEnvironmentVariable(); const asyncEnvironmentVariable = new CloudRunnerEnvironmentVariable();
asyncEnvironmentVariable.name = `async`; asyncEnvironmentVariable.name = `GAMECI_ASYNC`;
asyncEnvironmentVariable.value = `true`; asyncEnvironmentVariable.value = `true`;
let output = ''; let output = '';