Skip to content

Commit 6f71c10

Browse files
Update src/specify_cli/__init__.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent c7f382a commit 6f71c10

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/specify_cli/__init__.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1290,15 +1290,6 @@ def scaffold_from_core_pack(
12901290
if f.is_file():
12911291
shutil.copy2(f, tmpl_cmds / f.name)
12921292

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-
13021293
# Page templates (needed for vscode-settings.json etc.)
13031294
if templates_dir.is_dir():
13041295
tmpl_root = tmp / "templates"

0 commit comments

Comments
 (0)