diff options
author | Paul Kocialkowski <contact@paulk.fr> | 2016-12-24 21:00:26 +0100 |
---|---|---|
committer | Leah Rowe <info@minifree.org> | 2017-01-15 14:24:45 +0000 |
commit | 05d5710577786516c8f29735246edeafc86c85fe (patch) | |
tree | 1d491b585b0a55146efd3358d0cc68a1a14f7754 /libs/git | |
parent | dc7ea866a3881102fcd6c767537974a98fc83f67 (diff) | |
download | librebootfr-05d5710577786516c8f29735246edeafc86c85fe.tar.gz librebootfr-05d5710577786516c8f29735246edeafc86c85fe.zip |
libs: git: Check that blobs path is a valid file
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Diffstat (limited to 'libs/git')
-rwxr-xr-x | libs/git | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -301,7 +301,7 @@ git_project_prepare_blobs() { local blobs_path=$( project_blobs_path "$project" "$@" ) local blob - if [ -z "$blobs_path" ] + if ! [ -f "$blobs_path" ] then return fi |