diff options
-rwxr-xr-x | libs/tool | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -26,7 +26,7 @@ tool_include() { unset -f "${TOOL_ACTIONS[@]}" - . "$tool_path/$tool" + source "$tool_path/$tool" tool_helper_include "$tool" } @@ -39,7 +39,7 @@ tool_helper_include() { if [ -f "$include" ] then - . "$include" + source "$include" fi } |