Skip to content

Commit d372bb6

Browse files
committed
chore: update demo to the latest cookiecutter-robust-python
1 parent b89d50a commit d372bb6

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.cookiecutter.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"_commit": "ae33027db848df9540b9fb5735866d070f391bef",
2+
"_commit": "4b485513573db074f963642920993ad357792207",
33
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
44
"add_rust_extension": false,
55
"author": "Kyle Oliver",

.cruft.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
3-
"commit": "ae33027db848df9540b9fb5735866d070f391bef",
3+
"commit": "4b485513573db074f963642920993ad357792207",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {
@@ -20,7 +20,7 @@
2020
"license": "MIT",
2121
"development_status": "Development Status :: 1 - Planning",
2222
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
23-
"_commit": "ae33027db848df9540b9fb5735866d070f391bef"
23+
"_commit": "4b485513573db074f963642920993ad357792207"
2424
}
2525
},
2626
"directory": null

scripts/setup-remote.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,9 @@ def main() -> None:
2121
def setup_remote(path: Path, repository_host: str, repository_path: str) -> None:
2222
"""Set up the provided cookiecutter-robust-python project's git repo."""
2323
commands: list[list[str]] = [
24-
["git", "fetch", "origin"],
2524
["git", "remote", "add", "origin", f"https://{repository_host}/{repository_path}.git"],
2625
["git", "remote", "set-url", "origin", f"https://{repository_host}/{repository_path}.git"],
27-
["git", "pull"],
26+
["git", "fetch", "origin"],
2827
["git", "checkout", "main"],
2928
["git", "push", "-u", "origin", "main"],
3029
["git", "checkout", "develop"],

0 commit comments

Comments
 (0)