Commit a643c4a2 authored by nimrod's avatar nimrod
Browse files

Change bump shell script to git bump, also pushes tags to all remotes.

parent f9791767
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -200,12 +200,6 @@ ddg () {
    lynx "https://duckduckgo.com/lite/?q=$(urlencode "$@")"
}

bump () {
    semver-bump "$1-release" && \
    git commit VERSION -m"- Bumped $1 version." && \
    git tag-version
}

toux () {
    touch "$@"
    chmod +x "$@"

Documents/bin/git-bump

0 → 100755
+7 −0
Original line number Diff line number Diff line
#!/bin/sh
set -eu

semver-bump "$1-release"
git commit VERSION -m "Bumped $1 version."
git tag-version
git pushes --tags