diff options
author | Karel Kočí <cynerd@email.cz> | 2020-04-29 13:28:11 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2020-04-29 13:28:11 +0200 |
commit | e056c3a3943a34b93baa444b8d397259308f7af2 (patch) | |
tree | c6ee68d5ba98880ea1e916f81c2f5f6b142e38d4 /templates | |
parent | 808558ac821f772aefc82c2923f8091971b05b64 (diff) | |
download | laminar-cnf-e056c3a3943a34b93baa444b8d397259308f7af2.tar.gz laminar-cnf-e056c3a3943a34b93baa444b8d397259308f7af2.tar.bz2 laminar-cnf-e056c3a3943a34b93baa444b8d397259308f7af2.zip |
turris: ignore fail if patch fails to apply
This is just temporally before we remove patch completely as it fails
when it is already applied.
Diffstat (limited to 'templates')
-rwxr-xr-x | templates/turris.run | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/turris.run b/templates/turris.run index d96a7a6..2f56c05 100755 --- a/templates/turris.run +++ b/templates/turris.run @@ -26,7 +26,7 @@ else cd turris-build "$FILES/turris_checkout_repo_branch.sh" "$ANIMAL" cat feeds.conf - patch -Np1 < "$FILES/openwrt-hash.patch" + patch -Np1 < "$FILES/openwrt-hash.patch" || true # just ignore if it fails ) echo_stage "Prepare SDK" |