Compare commits
No commits in common. "52c74d4c09bc706ec5c3b1a24bb02298709cf91f" and "f5391fe807cc8e9f6015646df6037337e639a8a4" have entirely different histories.
52c74d4c09
...
f5391fe807
@ -16,14 +16,8 @@ sourceInitilize()
|
|||||||
|
|
||||||
# Check if the directory exists
|
# Check if the directory exists
|
||||||
if [ -d "$file_list_directory" ]; then
|
if [ -d "$file_list_directory" ]; then
|
||||||
# Use find to get a list of all files (excluding directories) in the
|
# Use find to get a list of all files (excluding directories) in the directory and its subdirectories
|
||||||
# directory and its subdirectories. The function_manifest.sh file is
|
local file_list=$(find "$file_list_directory" -type f -name "*.sh")
|
||||||
# excluded — it carries ~860 stub function definitions (~50 ms parse
|
|
||||||
# cost) that are only needed in lazy mode, where it's sourced
|
|
||||||
# explicitly. Including it here makes every eager-mode invocation pay
|
|
||||||
# for lazy infrastructure it never uses.
|
|
||||||
local file_list=$(find "$file_list_directory" -type f -name "*.sh" \
|
|
||||||
! -name "function_manifest.sh")
|
|
||||||
|
|
||||||
# Loop through each file in the file list
|
# Loop through each file in the file list
|
||||||
while IFS= read -r file; do
|
while IFS= read -r file; do
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user