aboutsummaryrefslogtreecommitdiff
path: root/libs/project
diff options
context:
space:
mode:
authorLeah Rowe <info@minifree.org>2017-07-21 21:24:44 +0000
committerGogs <gogitservice@gmail.com>2017-07-21 21:24:44 +0000
commit6e92244e0cc9a3b08cfcca8bd85990f795abb83e (patch)
tree5e63b881cf0e0b2adda84f8c2d360fa3912f9e5e /libs/project
parent09e74b0eaf09ba0dbf52e24925942a3eef0f02df (diff)
parent38472cfdca9f6c61c84cbd84d5206e02716becfd (diff)
downloadlibrebootfr-6e92244e0cc9a3b08cfcca8bd85990f795abb83e.tar.gz
librebootfr-6e92244e0cc9a3b08cfcca8bd85990f795abb83e.zip
Merge branch 'libreboot-main-cleanup' of kragle/libreboot into master
Diffstat (limited to 'libs/project')
-rwxr-xr-xlibs/project10
1 files changed, 3 insertions, 7 deletions
diff --git a/libs/project b/libs/project
index bcb73f16..8eaf0d2d 100755
--- a/libs/project
+++ b/libs/project
@@ -16,12 +16,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
PROJECT_ACTIONS_GENERIC=(usage download extract update build install release clean)
+PROJECT_ACTIONS_GENERIC_IGNORE_CHECK=(usage clean)
PROJECT_ACTIONS_HELPERS=(arguments)
-PROJECT_ACTIONS_FUNCTIONS=(
- "${PROJECT_ACTIONS_GENERIC[@]}"
- "${PROJECT_ACTIONS_GENERIC[@]/%/_check}"
- "${PROJECT_ACTIONS_HELPERS[@]}"
-)
INSTALL_REGEX='\([^:]*\):\(.*\)'
@@ -30,7 +26,7 @@ project_include() {
local project_path=$( project_path "$project" )
- unset -f "${PROJECT_ACTIONS_FUNCTIONS[@]}"
+ unset -f "${PROJECT_ACTIONS[@]}"
source "$project_path/$project"
@@ -732,7 +728,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.