diff options
author | Swift Geek <swiftgeek@gmail.com> | 2019-04-14 02:25:40 +0000 |
---|---|---|
committer | Gogs <gogitservice@gmail.com> | 2019-04-14 02:25:40 +0000 |
commit | ec45caf75e1312a296dd4437744b0929976361dc (patch) | |
tree | ec977f225be74a6cfdc89117dcde38fa96b6e945 | |
parent | f93de19bc68aa27c56449d12f7fd54cba6034ce8 (diff) | |
parent | b7fcc477a051a0f09f36251e71da50007de99aad (diff) | |
download | librebootfr-ec45caf75e1312a296dd4437744b0929976361dc.tar.gz librebootfr-ec45caf75e1312a296dd4437744b0929976361dc.zip |
Merge branch 'bugs' of and_who/libreboot into master
-rwxr-xr-x | libs/project | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/project b/libs/project index 25d6ca74..75e84ed5 100755 --- a/libs/project +++ b/libs/project @@ -143,7 +143,9 @@ project_action() { shift local arguments="$*" - project_action_check "$action" "$project" "$@" + if project_action_check "$action" "$project" "$@"; then + return 0 + fi printf '%s\n\n' "Project $project $action (with ${arguments:-no argument})" |