Skip to content

Commit

Permalink
[cli] properly set noGit and noInstall for analytics
Browse files Browse the repository at this point in the history
  • Loading branch information
danstepanov committed Jun 18, 2024
1 parent 7b6454f commit 910f13c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/spotty-tips-tease.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'create-expo-stack': patch
---

properly set noGit and noInstall for analytics
4 changes: 2 additions & 2 deletions cli/src/utilities/configAnalytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 ?? '',
Expand Down

0 comments on commit 910f13c

Please sign in to comment.