args
This commit is contained in:
parent
d7bf240ba0
commit
8c5b43a4e8
1 changed files with 4 additions and 1 deletions
|
@ -14,7 +14,10 @@ main_source_directory() {
|
||||||
local path="${1}"
|
local path="${1}"
|
||||||
if [ -d "${path}" ]; then
|
if [ -d "${path}" ]; then
|
||||||
local count ifs module modules
|
local count ifs module modules
|
||||||
modules="$(find "${path}" -type "f" -name "*.sh" -printf "%P
|
modules="$(find "${path}" \
|
||||||
|
-type "f" \
|
||||||
|
-name "*.sh" \
|
||||||
|
-printf "%P
|
||||||
" | sort)"
|
" | sort)"
|
||||||
ifs="${IFS}"
|
ifs="${IFS}"
|
||||||
IFS="
|
IFS="
|
||||||
|
|
Loading…
Reference in a new issue