diff options
author | Andrew Robbins <contact@andrewrobbins.info> | 2019-07-16 22:43:31 -0500 |
---|---|---|
committer | Andrew Robbins <contact@andrewrobbins.info> | 2019-07-16 22:45:17 -0500 |
commit | 7f8a0e4bc1e94db325cd0348c92c6005b6fd84cf (patch) | |
tree | eebd9ba0cd4b0ad5f2ac43ba2074520fb82e7aa5 /libs/common | |
parent | 089265a306c58b52a0f90dde99b7cc6af3f25e11 (diff) | |
download | librebootfr-7f8a0e4bc1e94db325cd0348c92c6005b6fd84cf.tar.gz librebootfr-7f8a0e4bc1e94db325cd0348c92c6005b6fd84cf.zip |
Add functions to safely apply patches to non-git sources
project_sources_patch() is the equivalent to git_patch() when working
with non-git sources. It should not be used with sources under a
version control system.
Diffstat (limited to 'libs/common')
-rwxr-xr-x | libs/common | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libs/common b/libs/common index 06b411e1..b1091e4f 100755 --- a/libs/common +++ b/libs/common @@ -117,6 +117,13 @@ diff_patch() { patch -fd "$sources_path" -r - < "$patch_path" } +diff_patch_check() { + local sources_path=$1 + local patch_path=$2 + + patch -sfd "$sources_path" --dry-run < "$patch_path" > /dev/null 2>&1 +} + path_wildcard_expand() { local path=$@ |