We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7f382a commit 6f71c10Copy full SHA for 6f71c10
src/specify_cli/__init__.py
@@ -1290,15 +1290,6 @@ def scaffold_from_core_pack(
1290
if f.is_file():
1291
shutil.copy2(f, tmpl_cmds / f.name)
1292
1293
- # Copy compact command templates subdirectory
1294
- compact_cmds_src = commands_dir / "compact"
1295
- if compact_cmds_src.is_dir():
1296
- compact_cmds_dst = tmpl_cmds / "compact"
1297
- compact_cmds_dst.mkdir(parents=True, exist_ok=True)
1298
- for f in compact_cmds_src.iterdir():
1299
- if f.is_file():
1300
- shutil.copy2(f, compact_cmds_dst / f.name)
1301
-
1302
# Page templates (needed for vscode-settings.json etc.)
1303
if templates_dir.is_dir():
1304
tmpl_root = tmp / "templates"
0 commit comments