diff options
author | Andrew Robbins <contact@andrewrobbins.info> | 2017-07-17 16:29:47 -0400 |
---|---|---|
committer | Andrew Robbins <contact@andrewrobbins.info> | 2017-07-17 16:52:08 -0400 |
commit | a57da0e3e8619525afdb338cc03ea6887306c6fb (patch) | |
tree | 495f8c58c08415653a0ff227da39777f9a88e60a /libs | |
parent | b6a666bf6e4c81660a0862b0db4dc9a13b75d49e (diff) | |
download | librebootfr-a57da0e3e8619525afdb338cc03ea6887306c6fb.tar.gz librebootfr-a57da0e3e8619525afdb338cc03ea6887306c6fb.zip |
Change '.' to the more readable 'source' command
Diffstat (limited to 'libs')
-rwxr-xr-x | libs/project | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/project b/libs/project index a9461b28..bcb73f16 100755 --- a/libs/project +++ b/libs/project @@ -32,7 +32,7 @@ project_include() { unset -f "${PROJECT_ACTIONS_FUNCTIONS[@]}" - . "$project_path/$project" + source "$project_path/$project" project_helper_include "$project" } @@ -45,7 +45,7 @@ project_helper_include() { if [ -f "$include" ] then - . "$include" + source "$include" fi } |