diff --git a/src/cli.ts b/src/cli.ts index 34332c0..f9bbb11 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -1,5 +1,4 @@ -import {execSync} from 'child_process'; -import {spawn} from 'node:child_process'; +import {execSync, spawn} from 'node:child_process'; export function $(str: TemplateStringsArray, ...args: string[]): Promise { let cmd = str.reduce((acc, part, i) => acc + part + (args[i] || ''), '');