pull/310/head
Frostebite 2021-12-31 05:21:44 +00:00
parent 166c44f0fd
commit 8247c6a024
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -411,7 +411,7 @@ class CLI {
if (results.length === 0) {
throw new Error('no CLI mode found');
}
cloud_runner_logger_1.default.log(`Entrypoint: ${results[0]}`);
cloud_runner_logger_1.default.log(`Entrypoint: ${results[0].name}`);
return yield results[0].asyncFunc();
});
}

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -29,7 +29,7 @@ export class CLI {
throw new Error('no CLI mode found');
}
CloudRunnerLogger.log(`Entrypoint: ${results[0]}`);
CloudRunnerLogger.log(`Entrypoint: ${results[0].name}`);
return await results[0].asyncFunc();
}