Skip to content

Commit

Permalink
docs: format Kilnfile stubs as yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
crhntr committed Jul 10, 2023
1 parent c5c6f36 commit bab0837
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TILE_AUTHOR_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ mkdir -p releases
touch releases/.gitkeep # not required but a good idea

# Hack a Kilnfile and Kilnfile lock
echo '{"release_sources": [{type: bosh.io}], "releases": [{"name": "bpm"}]}' > Kilnfile
yq '{"releases": [. | {"name": "bpm", "version": .version, "sha1": .sha, "remote_source": "bosh.io", "remote_path": .remote_path}]}' <(kiln find-release-version --release=bpm) > Kilnfile.lock
echo '{"release_sources": [{type: bosh.io}], "releases": [{"name": "bpm"}]}' | yq --prettyPrint . > Kilnfile
yq '{"releases": [. | {"name": "bpm", "version": .version, "sha1": .sha, "remote_source": "bosh.io", "remote_path": .remote_path}]}' <(kiln find-release-version --release=bpm) | yq --prettyPrint . > Kilnfile.lock

# Call Kiln fetch
kiln fetch
Expand Down

0 comments on commit bab0837

Please sign in to comment.