Skip to content

Commit dbf3038

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

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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)