Add verbose output.

This commit is contained in:
Christoph Niethammer 2016-05-18 14:02:54 +00:00
parent 041aab4956
commit eef081accb
2 changed files with 10 additions and 3 deletions

View file

@ -11,7 +11,12 @@ sit_info() {
local msg=$1 local msg=$1
echo "SIT: $msg" echo "SIT: $msg"
} }
sit_info_verbose() {
local msg=$1
if [[ $verbose -gt 0 ]] ; then
echo "SIT verbose: $msg"
fi
}
sit_countdown() { sit_countdown() {
local tt=$1 local tt=$1

6
sit
View file

@ -29,8 +29,8 @@ function show_help() {
echo " all" echo " all"
} }
verbose=0 declare -i verbose=0
debug=0 declare -i debug=0
sit_classfile="" # sit class file to be installed sit_classfile="" # sit class file to be installed
sit_action="all" # sit action to be performed sit_action="all" # sit action to be performed
@ -99,8 +99,10 @@ sit_info "Sit class file(s): $sit_classfile"
# compiler to use # compiler to use
# (gnu|intel|pgi) # (gnu|intel|pgi)
COMPILER=${COMPILER:=${DEFAULT_COMPILER}} COMPILER=${COMPILER:=${DEFAULT_COMPILER}}
sit_info_verbose "Compiler: $COMPILER"
# use specific compiler version # use specific compiler version
COMPILER_VERSION=${COMPILER_VERSION:=} COMPILER_VERSION=${COMPILER_VERSION:=}
sit_info_verbose "Compiler version: $COMPILER_VERSION"
# Compiler specifications # Compiler specifications