Skip to content

Commit 94b7575

Browse files
authored
Merge pull request #355 from JohnstonCode/edgardmessias-fix-354
fix: Fixed duplicated files for new remote files (Close #354)
2 parents 9f6e49b + 19056db commit 94b7575

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/repository.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ export class Repository {
544544
);
545545

546546
if (
547-
status.status === Status.NORMAL &&
547+
(status.status === Status.NORMAL || status.status === Status.NONE) &&
548548
(status.props === Status.NORMAL || status.props === Status.NONE)
549549
) {
550550
// Ignore non changed itens

0 commit comments

Comments
 (0)