diff options
author | Andrew Robbins <contact@andrewrobbins.info> | 2017-07-20 16:53:30 -0400 |
---|---|---|
committer | Andrew Robbins <contact@andrewrobbins.info> | 2017-07-21 01:36:36 -0400 |
commit | f092e798d8300f20690da77ff034f75dd0c42a29 (patch) | |
tree | fc2d20e0805cfce5281f1c95a822433064c7b044 /libs/project | |
parent | 15d5ee9e71fca2df938c5692d070f66733ab69ab (diff) | |
download | librebootfr-f092e798d8300f20690da77ff034f75dd0c42a29.tar.gz librebootfr-f092e798d8300f20690da77ff034f75dd0c42a29.zip |
Fix action 'update_check' erroring out erroneously
Diffstat (limited to 'libs/project')
-rwxr-xr-x | libs/project | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/project b/libs/project index 6df2f714..7729c485 100755 --- a/libs/project +++ b/libs/project @@ -727,7 +727,7 @@ project_update_check_git() { requirements "git" - if git_project_check "$repository" + if ! git_project_check "$repository" then # Git repository should always be updated (even if upstream didn't progress). # For instance, this is useful for testing new versions of patches without changing revision. |