File: release

package info (click to toggle)
emacs-buttercup 1.38-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 492 kB
  • sloc: lisp: 4,290; sh: 100; makefile: 23
file content (15 lines) | stat: -rwxr-xr-x 125 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

set -e
cd "$(dirname "$0")/.."

main() {
    run bumpversion minor
}

run() {
    echo "\$ $*"
    "$@"
}

main