aboutsummaryrefslogtreecommitdiff
path: root/resources/scripts/helpers/build/module
diff options
context:
space:
mode:
authorLeah Rowe <info@minifree.org>2016-08-22 13:51:24 +0100
committerLeah Rowe <info@minifree.org>2016-08-22 17:21:32 +0100
commitb12a86d9d808bf2239573aea7496b21d54123ee0 (patch)
treeff54e31fef1997bb8aac170ab3af45a1e3ed19f2 /resources/scripts/helpers/build/module
parentddc4f2af70e09a2848ee2eb1705eca92e036923d (diff)
downloadlibrebootfr-b12a86d9d808bf2239573aea7496b21d54123ee0.tar.gz
librebootfr-b12a86d9d808bf2239573aea7496b21d54123ee0.zip
some random fixes
Diffstat (limited to 'resources/scripts/helpers/build/module')
-rwxr-xr-xresources/scripts/helpers/build/module/coreboot4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/scripts/helpers/build/module/coreboot b/resources/scripts/helpers/build/module/coreboot
index 2fee6e3c..f6e23cae 100755
--- a/resources/scripts/helpers/build/module/coreboot
+++ b/resources/scripts/helpers/build/module/coreboot
@@ -98,7 +98,7 @@ apply_patches_from_directory() {
continue # ugly ugly ugly ugly ugly
fi # most hideous thing you've ever seen
- git am "${patch}" || return 1
+ git am "${patch}" || continue
done
fi
}
@@ -110,7 +110,7 @@ apply_patches_from_file() {
if [ -f "${patch_list}" ]; then
for patchname in $(cat "${patch_list}"); do
- git am "${libreboot_src_root}/${patchname}" || return 1
+ git am "${libreboot_src_root}/${patchname}" || continue
done
fi
}