Skip to content

Commit

Permalink
Merge branch 'mr/cardao/dont-ignore-vcs-when-external-checkout' into …
Browse files Browse the repository at this point in the history
…'master'

Make anod external checkout ignore only asked files

See merge request it/e3-core!13
  • Loading branch information
leocardao committed Jul 18, 2024
2 parents eda2043 + 4293ff1 commit d62ca5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/e3/anod/checkout.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def update_external(
self.working_dir,
preserve_timestamps=False,
delete_ignore=True,
ignore=list(VCS_IGNORE_LIST) + ignore_list,
ignore=[".git", ".svn"] + ignore_list,
)

new_commit = get_filetree_state(self.working_dir, ignore_hidden=False)
Expand Down

0 comments on commit d62ca5c

Please sign in to comment.