Skip to content

Commit f8b0d6c

Browse files
committed
update readme and install script
1 parent 6d1e5bb commit f8b0d6c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ Run this command in your project's root directory to install the release script:
2121
curl -o- https://raw.githubusercontent.com/simbo/release-version-script/latest/install.sh | bash
2222
```
2323

24-
Afterward, you can run the `./release` command at any time to create and push a
25-
new tag with semantic versioning:
24+
Afterward, you can run the `./release.sh` command at any time to create and push
25+
a new tag with semantic versioning:
2626

2727
```sh
28-
./release UPDATE
28+
./release.sh UPDATE
2929
```
3030

3131
Allowed values for `UPDATE` are `major`, `minor` or `patch`.

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ b=$(tput -T$t setaf 12)
99
u=$(tput -T$t smul)
1010
x=$(tput -T$t sgr0)
1111

12-
script="release"
12+
script="release.sh"
1313

1414
if [[ -f $script ]] && ! grep -q "simbo/release-version-script" $script; then
1515
printf "\n${r}ERROR: file '${script}' already exists\n"

0 commit comments

Comments
 (0)