Skip to content

Commit

Permalink
chore: version updated to 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
typekpb committed Oct 26, 2017
1 parent 230ecc9 commit 72238c0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions oradown.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ set -e

cmdname="${0##*/}"

VERSION=0.0.1
VERSION=0.0.2

echoto() {
echoto() {
# print to stderr or to stdout
out=$1
shift 1

if ([ "${out}" -eq 2 ]); then
printf "$@" >&2
else
# stdout can be silenced only
if [ "${QUIET}" -eq 0 ]; then
if [ "${QUIET}" -eq 0 ]; then
printf "$@"
fi
fi
Expand All @@ -30,7 +30,7 @@ Functional arguments:
-O, --output=FILE output FILE (optional)
-P, --password=PASSWORD set the Oracle PASSWORD (mandatory)
-U, --username=USERNAME set the Oracle USERNAME (mandatory)
Logging and info arguments:
-H, --help print this help and exit
-V, --version display the version of oradown and exit.
Expand Down

0 comments on commit 72238c0

Please sign in to comment.