diff options
author | Andrew Robbins <contact@andrewrobbins.info> | 2017-07-17 15:02:58 -0400 |
---|---|---|
committer | Andrew Robbins <contact@andrewrobbins.info> | 2017-07-17 15:35:12 -0400 |
commit | 9bc79485d333ab84ce4ccf3269df11001de82eaf (patch) | |
tree | 0affeb1e88373d1072cdd28048a9baba427c78f6 | |
parent | 81b33ca0168641aa5c50e79c7bf9f3fe2d96c40c (diff) | |
download | librebootfr-9bc79485d333ab84ce4ccf3269df11001de82eaf.tar.gz librebootfr-9bc79485d333ab84ce4ccf3269df11001de82eaf.zip |
Make explicit which directory 'find' should search
-rwxr-xr-x | libs/project | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/project b/libs/project index da05e9f9..a7ed8b87 100755 --- a/libs/project +++ b/libs/project @@ -1203,7 +1203,7 @@ project_release_install() { project_install_directory_missing_empty_error "$project" "$@" - local files=$( cd "$install_path" && find -type f || true ) + local files=$( find "$install_path" -type f || true ) local file printf '%s\n' "$files" | while read -r file @@ -1230,7 +1230,7 @@ project_release_install_check() { project_install_directory_missing_empty_error "$project" "$@" - local files=$( cd "$install_path" && find -type f || true ) + local files=$( find "$install_path" -type f || true ) local file printf '%s\n' "$files" | while read -r file |