Skip to content
This repository was archived by the owner on Mar 13, 2024. It is now read-only.

Commit 21d107a

Browse files
committed
Switch to master as the default branch
1 parent 901f505 commit 21d107a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/dls_python3_skeleton/__main__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def merge_skeleton(
5959
# Delete all the current files if there are any
6060
git_tmp("rm", "-rf", ".", "--ignore-unmatch")
6161
# Merge in the skeleton commits
62-
git_tmp("pull", SKELETON)
62+
git_tmp("pull", SKELETON, "skeleton")
6363
# Move things around
6464
git_tmp("mv", "src/dls_python3_skeleton", f"src/{package}")
6565
git_tmp("mv", "tests/test_dls_python3_skeleton.py", f"tests/test_{package}.py")
@@ -95,6 +95,7 @@ def new(args):
9595
path: Path = args.path
9696
path.mkdir(parents=True)
9797
git("init", cwd=path)
98+
print(f"Created git repo in {path}")
9899
merge_skeleton(
99100
path=path,
100101
org=args.org,

0 commit comments

Comments
 (0)