Skip to content

Commit

Permalink
Update README.md with correct sbin/path (#21)
Browse files Browse the repository at this point in the history
The README was referencing a script that was moved. Update to reflect reality.
The release artifact was also not including the `sbin/install` script, so I updated the packaging to include it.
Bump version for upcoming cut of release
  • Loading branch information
jabrown85 authored Jan 8, 2021
1 parent 3117a20 commit fea59b7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SHELL=/bin/bash -o pipefail

GO111MODULE := on

VERSION := "v0.2"
VERSION := "v0.3"

build:
@GOOS=linux go build -o "bin/release" ./cmd/release/...
Expand All @@ -25,7 +25,7 @@ clean:
-rm -f bin/release

package: clean build
@tar cvzf cnb-shim-$(VERSION).tgz bin/ README.md LICENSE
@tar cvzf cnb-shim-$(VERSION).tgz bin/ sbin/ README.md LICENSE

release:
@git tag $(VERSION)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $ heroku buildpacks:search
To use the shim manually, install the target buildpack:

```sh-session
$ bin/install "path/to/buildpack.toml" "https://example.com/buildpack.tgz"
$ sbin/install "path/to/buildpack.toml" "https://example.com/buildpack.tgz"
```

Then run this buildpack.
Expand All @@ -53,7 +53,7 @@ name = "Elixir"
id = "heroku-18"
TOML
$ bin/install buildpack.toml https://buildpack-registry.s3.amazonaws.com/buildpacks/hashnuke/elixir.tgz
$ sbin/install buildpack.toml https://buildpack-registry.s3.amazonaws.com/buildpacks/hashnuke/elixir.tgz
$ cd ~/my-elixir-app/
Expand Down

0 comments on commit fea59b7

Please sign in to comment.