Skip to content

Commit d5e3a10

Browse files
committed
typos and name of meta-data file
1 parent e471c53 commit d5e3a10

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

development.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The version is defined in the `VERSION` file in the root of the project,
1616
and this file should be used as the input for any process that needs
1717
version information.
1818

19-
## PRs Merging
19+
## Pull Requests
2020

2121
The PR description should describe the changes being made in the PR, and
2222
be updated to reflect changes made during the review process.

stackinator/builder.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ def generate(self, recipe):
226226
# write the meta data
227227
meta_path = self.path / 'store/meta'
228228
meta_path.mkdir(exist_ok=True)
229-
meta_json_path = meta_path / 'meta.json'
229+
meta_json_path = meta_path / 'configure.json'
230230
# write a json file with basic meta data
231231
with (meta_path / 'meta.json').open('w') as f:
232232
f.write(json.dumps(self.meta, sort_keys=True, indent=2))

0 commit comments

Comments
 (0)