Skip to content

Commit

Permalink
docs: fix typo shellh to shell
Browse files Browse the repository at this point in the history
  • Loading branch information
crhntr committed Jul 12, 2023
1 parent 7ef03bd commit cce10a2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ To install the `kiln` CLI

- download from the [releases page](https://github.com/pivotal-cf/kiln/releases)

```shellh
```shell
export KILN_VERSION
KILN_VERSION="$(curl -H "Accept: application/vnd.github.v3+json" 'https://api.github.com/repos/pivotal-cf/kiln/releases?per_page=1' | jq -r '.[0].name')"
curl -L -o kiln "https://github.com/pivotal-cf/kiln/releases/download/${KILN_VERSION}/kiln-darwin-${KILN_VERSION}"
Expand All @@ -29,7 +29,7 @@ To install the `kiln` CLI

- build from source

```shellh
```shell
git clone git@github.com:pivotal-cf/kiln.git
cd kiln
git checkout 0.60.2
Expand All @@ -38,7 +38,7 @@ To install the `kiln` CLI

- copy from a Docker image (to another image)

```shellh
```shell
docker pull pivotalcfreleng/kiln:latest
```

Expand Down
8 changes: 4 additions & 4 deletions TILE_AUTHOR_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ It does not upload the release to TanzuNet but adds the built tile to a GitHub R
This starts from an empty directory and downloads the latest BPM release from bosh.io.
Note, the Kilnfile and Kilnfile.lock (unfortunately/frustratingly) must be created manually.

```shellh
```shell
# Create and go into an empty directory
mkdir -p /tmp/try-kiln-fetch
cd !$
Expand Down Expand Up @@ -217,7 +217,7 @@ Updating a release in a lock file requires two kiln commands.

Please follow the ["Kiln Fetch Example"](#kiln-fetch-example) before following this one.

```shellh
```shell
# (optional) Add a version constraint to the Kilnfile.
# This shows how Kiln will select a version that matches a constrint.
yq '(.releases[] | select(.name == "bpm")) |= .version = "~1.1"' Kilnfile
Expand Down Expand Up @@ -442,7 +442,7 @@ artifactory_password: some-password
The following code will allow you to export/cache compiled BOSH Release Tarballs to either S3 or Artifactory after the tile has been deployed.
Before `kiln cache-compiled-releases` exports the BOSH Release Tarballs it checks the specified source to ensure a tarball with a name containing the stemcell version does not exist.

```shellh
```shell
# create a tile with the releases you want compiled
kiln bake
Expand Down Expand Up @@ -561,7 +561,7 @@ and it is nice if your bake command not require too many flags (see [Tile Source
The private repository [kiln buildpack](https://github.com/pivotal/kiln-buildpack) has the Paketo buildpack source.
You can run the acceptance tests with a `TILE_DIRECTORY` environment variable set to your tile source to see if your tile will build with the buildpack.

```shellh
```shell
mkdir -p /tmp/try-kiln-buildpack
cd !$
Expand Down

0 comments on commit cce10a2

Please sign in to comment.