Skip to content

Commit

Permalink
fix: initialize git does not work (#252)
Browse files Browse the repository at this point in the history
Signed-off-by: L <[email protected]>
  • Loading branch information
louisgv authored Oct 5, 2022
1 parent fbfe52e commit cfa55a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/plasmo/src/features/project-creator/git-init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export async function gitInit(
commonPath: CommonPath,
root: string
): Promise<boolean> {
if (existsSync(commonPath.gitIgnorePath)) {
if (!existsSync(commonPath.gitIgnorePath)) {
return false
}

Expand Down

0 comments on commit cfa55a5

Please sign in to comment.