Adding rcode for completness sake on the create_prefix function.

This commit is contained in:
Micheal Quinn 2019-11-26 13:50:31 -06:00
parent f6ad8f57cf
commit 47d84b9947
1 changed files with 3 additions and 0 deletions

View File

@ -354,6 +354,9 @@ create_prefix() {
prefix="${1}"
mkdir -p "${prefix}"
rcode="${?}"
return "${rcode}"
}
#--- FUNCTION ----------------------------------------------------------------