Skip to content

Commit 910f13c

Browse files
committed
[cli] properly set noGit and noInstall for analytics
1 parent 7b6454f commit 910f13c

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.changeset/spotty-tips-tease.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'create-expo-stack': patch
3+
---
4+
5+
properly set noGit and noInstall for analytics

cli/src/utilities/configAnalytics.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ export async function storeConfigAnalytics({
8484
authType ?? '',
8585
eas ? 'true' : 'false',
8686
importAlias ? 'true' : 'false',
87-
noGit ? 'false' : 'true', // reverse logic because column is "git"
88-
noInstall ? 'false' : 'true', // reverse logic because column is "install"
87+
noGit ? 'true' : 'false',
88+
noInstall ? 'true' : 'false',
8989
overwrite ? 'true' : 'false',
9090
os ?? '',
9191
osPlatform ?? '',

0 commit comments

Comments
 (0)