mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-04-23 15:41:28 +00:00
Merge remote-tracking branch 'origin/develop' into xap
This commit is contained in:
commit
4cda2333d8
@ -1,8 +1,8 @@
|
||||
import shutil
|
||||
from pathlib import Path
|
||||
|
||||
from milc import cli
|
||||
|
||||
from qmk.path import normpath
|
||||
from qmk import submodules
|
||||
|
||||
REMOVE_DIRS = [
|
||||
@ -40,12 +40,12 @@ def git_submodule(cli):
|
||||
remove_dirs = REMOVE_DIRS
|
||||
if cli.config.git_submodule.force:
|
||||
# Also trash everything that isnt marked as "safe"
|
||||
for path in normpath('lib').iterdir():
|
||||
for path in Path('lib').iterdir():
|
||||
if not any(ignore in path.as_posix() for ignore in IGNORE_DIRS):
|
||||
remove_dirs.append(path)
|
||||
|
||||
for folder in map(normpath, remove_dirs):
|
||||
if normpath(folder).is_dir():
|
||||
for folder in map(Path, remove_dirs):
|
||||
if folder.is_dir():
|
||||
print(f"Removing '{folder}'")
|
||||
shutil.rmtree(folder)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user