Skip to content
Snippets Groups Projects
Commit 917b0c96 authored by Diego Wilson's avatar Diego Wilson
Browse files

Always patch the tree if "force" flag is set

Change-Id: If782cdecb9a52e3e8b5fe6226b543a0b30be2e07
parent 6fa26e97
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,7 @@ __patch_tree()
LASTMD5SUM=$(cat out/lastpatch.md5sum)
MD5SUM=$(__tree_md5sum ${B2G_PATCH_DIRS})
fi
if [[ "$LASTMD5SUM" != "$MD5SUM" ]]; then
if [[ "$LASTMD5SUM" != "$MD5SUM" || $1 == "force" ]]; then
branch() {
[[ -d $1 ]] || return 1
......
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