فهرست منبع

fix(cta): account for null args

amrbashir 3 سال پیش
والد
کامیت
e25fc68da6
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      tooling/create-tauri-app/src/shell.ts

+ 1 - 1
tooling/create-tauri-app/src/shell.ts

@@ -24,7 +24,7 @@ export const shell = async (
       if (log) console.log(`[running]: ${command}`)
       return await execa(
         command,
-        args.filter((e) => e !== ''),
+        (args ?? []).filter((e) => e !== ''),
         {
           stdio: 'inherit',
           cwd: process.cwd(),