Skip to content
Snippets Groups Projects
Commit d728fcb3 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "patch md5sum now correctly skips missing directories"

parents 3dbe5e49 b6ff7003
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ B2G_PATCH_DIRS=${B2G_PATCH_DIRS_OVERRIDE:-device/qcom/b2g_common/patch}
__tree_md5sum()
{
(
FILELIST="$(find $@ -type f ! -path "*/.*" 2>/dev/null) ${B2G_HASHED_FILES}"
FILELIST="$(find $@ -type f ! -path "*/.*" 2>/dev/null || true) ${B2G_HASHED_FILES}"
if [[ -n "${B2G_USE_REPO}" ]]; then
${REPO} manifest -r -o - 2>/dev/null
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment