From 910f13c11db2064037e1e0a44c27966e8945574f Mon Sep 17 00:00:00 2001 From: Dan Stepanov Date: Mon, 17 Jun 2024 22:11:49 -0700 Subject: [PATCH] [cli] properly set noGit and noInstall for analytics --- .changeset/spotty-tips-tease.md | 5 +++++ cli/src/utilities/configAnalytics.ts | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changeset/spotty-tips-tease.md diff --git a/.changeset/spotty-tips-tease.md b/.changeset/spotty-tips-tease.md new file mode 100644 index 00000000..bc0cfcb8 --- /dev/null +++ b/.changeset/spotty-tips-tease.md @@ -0,0 +1,5 @@ +--- +'create-expo-stack': patch +--- + +properly set noGit and noInstall for analytics diff --git a/cli/src/utilities/configAnalytics.ts b/cli/src/utilities/configAnalytics.ts index f562bcba..f036c92a 100644 --- a/cli/src/utilities/configAnalytics.ts +++ b/cli/src/utilities/configAnalytics.ts @@ -84,8 +84,8 @@ export async function storeConfigAnalytics({ authType ?? '', eas ? 'true' : 'false', importAlias ? 'true' : 'false', - noGit ? 'false' : 'true', // reverse logic because column is "git" - noInstall ? 'false' : 'true', // reverse logic because column is "install" + noGit ? 'true' : 'false', + noInstall ? 'true' : 'false', overwrite ? 'true' : 'false', os ?? '', osPlatform ?? '',