diff --git a/packages/expo/src/executors/install/install.impl.ts b/packages/expo/src/executors/install/install.impl.ts index 52f6b8fb97a8b..27f3006ac1ca1 100644 --- a/packages/expo/src/executors/install/install.impl.ts +++ b/packages/expo/src/executors/install/install.impl.ts @@ -84,7 +84,7 @@ function createInstallOptions(options: ExpoInstallOptions) { // when true, does not need to pass the value true, just need to pass the flag in kebob case acc.push(`--${names(k).fileName}`); } - } else { + } else if (v !== undefined) { acc.push(`--${names(k).fileName}`, v); }