Skip to content

Commit 6b26b38

Browse files
committed
fix
1 parent f99b96e commit 6b26b38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/ascWrapper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class CompilationError extends Error {
1313

1414
export async function ascMain(ascArgv: string[]) {
1515
const stderr = createMemoryStream();
16-
const { error } = await compiler.compile(ascArgv.concat(...["--noColors"]), { stderr });
16+
const { error } = await compiler.compile(ascArgv.concat("--noColors"), { stderr });
1717
if (error) {
1818
throw new CompilationError(stderr.toString());
1919
}

0 commit comments

Comments
 (0)