1
0
mirror of https://github.com/schollz/croc.git synced 2024-11-24 08:02:33 +03:00

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

View File

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