Skip to content

Commit

Permalink
Bump install version to reflect latest release
Browse files Browse the repository at this point in the history
  • Loading branch information
jspc committed Jun 17, 2024
1 parent 253e68e commit 637c0f5
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ These distinctions are explored further in [parser/](parser/)
## Installation

```bash
$ curl https://github.com/vinyl-linux/mint/releases/download/0.4.0/mint -o /usr/local/bin/mint
$ curl https://github.com/vinyl-linux/mint/releases/download/v0.4.1/mint -o /usr/local/bin/mint
$ mint
mint, a contraction of Message Interchange, is a binary message format
(similar to protobuf, thrift, etc.) designed to provide fast serialisation,
Expand Down
22 changes: 22 additions & 0 deletions scripts/retrigger-dependabot-branches.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/usr/bin/env bash
#
# So: for some reason (probably down to how we run tests and push and not pull_request open/ sync
# in order to avoid double running tests- and probably down to how dependabot runs: I suspect it
# uses the API which doesn't trigger a push ¯\_(ツ)_/¯) dependabot PRs don't run tests.
#
# This little hacketty hack should allow us to manually trigger those jobs by committing/ force-pushing
# under a real user, and via git

set -e

PREFIX="origin/"

for B in $(git branch -r); do
if [[ "${B}" == origin/dependabot/* ]]; then
git checkout ${B#"$PREFIX"}
git commit --amend --no-edit
git push -f
fi
done

git checkout main

0 comments on commit 637c0f5

Please sign in to comment.