diff options
author | Leah Rowe <info@minifree.org> | 2016-08-22 13:51:24 +0100 |
---|---|---|
committer | Leah Rowe <info@minifree.org> | 2016-08-22 17:21:32 +0100 |
commit | b12a86d9d808bf2239573aea7496b21d54123ee0 (patch) | |
tree | ff54e31fef1997bb8aac170ab3af45a1e3ed19f2 /resources/scripts/helpers/build/module | |
parent | ddc4f2af70e09a2848ee2eb1705eca92e036923d (diff) | |
download | librebootfr-b12a86d9d808bf2239573aea7496b21d54123ee0.tar.gz librebootfr-b12a86d9d808bf2239573aea7496b21d54123ee0.zip |
some random fixes
Diffstat (limited to 'resources/scripts/helpers/build/module')
-rwxr-xr-x | resources/scripts/helpers/build/module/coreboot | 4 |
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 } |