diff --git a/bldpkg b/bldpkg index 27773e6..7843fba 100644 --- a/bldpkg +++ b/bldpkg @@ -24,17 +24,27 @@ # -> Write code to log build output to a log file inside a particular directory # -> Email the user about the outcome of the build? # -> Increment warnings as they are issued during the build and show final warning total in the build summary -# -> Determine if the staging directory is empty at the end of the build, and if it is, error out -# -> Replace [INFO], [WARNING] and [ERROR] with suitable functions for efficient repetition + +err() { + printf "**ERROR**\n$@\n" + exit 1 +} + +info() { + printf "[INFO] $@\n" +} + +warn() { + printf "[WARNING]\n$@\n" +} # Determine whether we are using bash version 4 and later. If not, exit. -if ((BASH_VERSINFO[0] < 4)) ; then - echo "[ERROR] bldpkg requires a minimum of bash shell version 4 to run" - exit 1 +if [[ -z $BASH_VERSINFO ]] ; then + err "Is this really a GNU bash shell?" +elif ((BASH_VERSINFO[0] < 4)) ; then + err "Bldpkg requires a minimum of GNU bash shell version 4 to run" fi -set -e - # Time when the build commenced. Note: elapsed time is logged by the runtime function way below. # This output goes into package build summary. commencedate=$(date '+%a, %d %b %Y, %T') @@ -90,6 +100,8 @@ Usage: -s Display build summary. A summary is produced whenever a build is either interrupted, exits cleanly or aborts due to a build error + -v Increase compiler verbosity + -x Invoke bash shell command trace mode. This one isn't akin to running bash -x