We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5224648 commit 47fb302Copy full SHA for 47fb302
src/commands/run.ts
@@ -224,6 +224,7 @@ export default class RunProject {
224
tunnelSpinner.clear();
225
} catch (err) {
226
log.error(chalk.white.bgRed.bold(err.message));
227
+ await this.tunnel.stop();
228
process.exit(1);
229
}
230
tunnelSpinner.succeed('TestingBot Tunnel Ready');
@@ -234,6 +235,9 @@ export default class RunProject {
234
235
zipFile = await this.archiver.start();
236
237
log.error(chalk.white.bgRed.bold(err));
238
+ if (config.run_settings.start_tunnel) {
239
240
+ }
241
242
243
0 commit comments