File tree Expand file tree Collapse file tree 3 files changed +14
-3
lines changed
Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,16 @@ Change Log
22==========
33Versioned according to [ Semantic Versioning] ( http://semver.org/ ) .
44
5+ ## Unreleased
6+
7+ ## 0.0.3
8+
9+ Changed:
10+
11+ - Use bash from env instead of fixed shebang
12+ - Ensure minimum bash version
13+
14+
515## 0.0.2
616
717First release
Original file line number Diff line number Diff line change 1- #! /bin/bash
1+ #! /usr/ bin/env bash
22# shellcheck disable=SC2086
33
44set -eu
55set -o pipefail
66
7- which ocrd > /dev/null 2> /dev/null || { echo " ocrd not in \$ PATH. Panicking" ; exit 1; }
7+ which ocrd > /dev/null 2> /dev/null || { echo >&2 " ocrd not in \$ PATH. Panicking" ; exit 1; }
8+ (( BASH_VERSINFO< 4 || BASH_VERSINFO== 4 && BASH_VERSINFO[1 ]< 4 )) && echo >&2 " bash $BASH_VERSION is too old. Please install bash 4.4 or newer." && exit 1
89
910SHAREDIR=" $( cd " $( dirname " $0 " ) " > /dev/null && pwd) "
1011
Original file line number Diff line number Diff line change 11{
22 "git_url" : " https://github.com/OCR-D/ocrd_im6convert" ,
3- "version" : " 0.0.2 " ,
3+ "version" : " 0.0.3 " ,
44 "tools" : {
55
66 "ocrd-im6convert" : {
You can’t perform that action at this time.
0 commit comments