Skip to content

Commit cd405e1

Browse files
committed
[feat] Remove quite flag
1 parent 80b786d commit cd405e1

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

dist/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -29897,8 +29897,8 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
2989729897
exports.run = void 0;
2989829898
const core = __importStar(__nccwpck_require__(2186));
2989929899
const glob = __importStar(__nccwpck_require__(8090));
29900-
const fs = __importStar(__nccwpck_require__(5630));
2990129900
const child_process_1 = __nccwpck_require__(2081);
29901+
const fs = __importStar(__nccwpck_require__(5630));
2990229902
var TEST_PIDS = [];
2990329903
run();
2990429904
/**
@@ -29990,7 +29990,7 @@ async function run() {
2999029990
function generateCommand(path) {
2999129991
const args = [
2999229992
// `--address=""`, // Disable the REST API. THIS DOESN'T WORK???? TODO: Investigate
29993-
'--quiet',
29993+
// '--quiet',
2999429994
...(flags ? flags.split(' ') : []),
2999529995
];
2999629996
if (isCloud && cloudRunLocally) {

src/index.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import * as core from '@actions/core'
2-
import * as glob from '@actions/glob'
3-
import * as fs from 'fs-extra'
4-
import { spawn } from 'child_process'
1+
import * as core from '@actions/core';
2+
import * as glob from '@actions/glob';
3+
import { spawn } from 'child_process';
4+
import * as fs from 'fs-extra';
55

66
var TEST_PIDS: number[] = [];
77

@@ -98,7 +98,7 @@ export async function run(): Promise<void> {
9898
function generateCommand(path: string): string {
9999
const args = [
100100
// `--address=""`, // Disable the REST API. THIS DOESN'T WORK???? TODO: Investigate
101-
'--quiet',
101+
// '--quiet',
102102
...(flags ? flags.split(' ') : []),
103103
]
104104
if (isCloud && cloudRunLocally) {

0 commit comments

Comments
 (0)