Skip to content
Snippets Groups Projects
Commit b6ff7003 authored by Michael Vines's avatar Michael Vines Committed by B2G User
Browse files

patch md5sum now correctly skips missing directories

Change-Id: I8d7d4582366749707eeb665e3ed5afd0aa6187a0
parent 3dbe5e49
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