Skip to content

Commit 88925b3

Browse files
committed
fix(template): Forgot to add configuration setting to main settings file.
1 parent 0eda9ce commit 88925b3

4 files changed

Lines changed: 4 additions & 1 deletion

File tree

changelogs/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ Feat 015 (#45)
161161
- *(docs)* Docs are not being updated with upgrade for some reason. debugging.
162162
- *(docs)* Revert. Docs are not being updated with upgrade for some reason. debugging.
163163
- *(template)* Figured out _is_sub_template needs to be false for the documents. Need to fix the cookiecutter-cookiecutter hooks.
164+
- *(configuration)* Cookiecutter upgrader configuration fix.
164165
## [0.1.0] - 2025-12-05
165166

166167
### ⚙️ Miscellaneous

changelogs/releases/v0.1.1.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,3 +161,4 @@ Feat 015 (#45)
161161
- *(docs)* Docs are not being updated with upgrade for some reason. debugging.
162162
- *(docs)* Revert. Docs are not being updated with upgrade for some reason. debugging.
163163
- *(template)* Figured out _is_sub_template needs to be false for the documents. Need to fix the cookiecutter-cookiecutter hooks.
164+
- *(configuration)* Cookiecutter upgrader configuration fix.

cookiecutter.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
"ros2",
5151
"typescript"
5252
],
53+
"_default_branch": "master",
5354
"_is_sub_template": true,
5455
"_copy_without_render": [
5556
"README.md",

{{ cookiecutter.project_slug }}/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ remote_theme: "{{ cookiecutter.theme }}"
99
ga_tracking: "{{ cookiecutter.ga_tracking }}"
1010

1111
repo_url: "{{ cookiecutter.repo_url }}"
12-
repo_blob: "{{cookiecutter.repo_url }}/blob/{{ cookiecutter._default_branch }}"
12+
repo_blob: "{{ cookiecutter.repo_url }}/blob/{{ cookiecutter._default_branch }}"
1313
github_io_url: "{{ cookiecutter.github_io }}"
1414
repository: "{{ cookiecutter.github_username }}/{{ cookiecutter.project_slug }}"
1515

0 commit comments

Comments
 (0)