diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2022-10-09 08:21:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-09 05:21:52 -0700 |
commit | 09dffb9db7d16496e55e86f78ab60241533d86f6 (patch) | |
tree | b41dda1a0c3f127ea5ab4a0e05516eda89341132 /scripts/bump-deps.sh | |
parent | de7be43acc9459e83e4fd5dcb390b5f2d2945c70 (diff) | |
download | rneovim-09dffb9db7d16496e55e86f78ab60241533d86f6.tar.gz rneovim-09dffb9db7d16496e55e86f78ab60241533d86f6.tar.bz2 rneovim-09dffb9db7d16496e55e86f78ab60241533d86f6.zip |
docs: various #12823
- increase python line-length limit from 88 => 100.
- gen_help_html: fix bug in "tag" case (tbl_count => tbl_contains)
ref #15632
fix #18215
fix #18479
fix #20527
fix #20532
Co-authored-by: Ben Weedon <ben@weedon.email>
Diffstat (limited to 'scripts/bump-deps.sh')
-rwxr-xr-x | scripts/bump-deps.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/bump-deps.sh b/scripts/bump-deps.sh index 85c7f72700..e725608b39 100755 --- a/scripts/bump-deps.sh +++ b/scripts/bump-deps.sh @@ -17,9 +17,13 @@ BASENAME="$(basename "${0}")" readonly BASENAME usage() { - echo "Bump Neovim dependencies" + echo "Bump Nvim dependencies" echo echo "Usage: ${BASENAME} [ -h | --pr | --branch=<dep> | --dep=<dependency> ]" + echo " Update a dependency:" + echo " ./scripts/bump-deps.sh --dep Luv --version 1.43.0-0" + echo " Create a PR:" + echo " ./scripts/bump-deps.sh --pr" echo echo "Options:" echo " -h show this message and exit." |