Skip to content

Commit

Permalink
Update release command name
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillplatonov committed Jul 30, 2024
1 parent 4ecbb10 commit 22f7f64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ rake

## Releases

The library follows [semantic versioning](https://semver.org/). To draft a new release you need to run `script/release` with a new version number:
The library follows [semantic versioning](https://semver.org/). To draft a new release you need to run `bin/release` with a new version number:

```bash
bin/release VERSION
Expand Down
2 changes: 1 addition & 1 deletion bin/release
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
VERSION=$1

if [ -z $1 ] ; then
echo "Please provide version number: script/release 1.0.0" && exit 1;
echo "Please provide version number: bin/release 1.0.0" && exit 1;
fi

printf "module Polaris\n module ViewComponents\n VERSION = \"$VERSION\"\n end\nend\n" > ./lib/polaris/view_components/version.rb
Expand Down

0 comments on commit 22f7f64

Please sign in to comment.