mirror of
https://github.com/org-roam/org-roam
synced 2025-08-01 12:17:21 -05:00
(ci): do not return on package-lint error (#1116)
This commit is contained in:
8
makem.sh
8
makem.sh
@ -591,6 +591,12 @@ function debug {
|
||||
}
|
||||
fi
|
||||
}
|
||||
|
||||
function error_continue {
|
||||
echo_color red "ERROR ($(ts)): $@" >&2
|
||||
((errors++))
|
||||
}
|
||||
|
||||
function error {
|
||||
echo_color red "ERROR ($(ts)): $@" >&2
|
||||
((errors++))
|
||||
@ -763,7 +769,7 @@ function lint-package {
|
||||
--funcall package-lint-batch-and-exit \
|
||||
"${files_project_feature[@]}" \
|
||||
&& success "Linting package finished without errors." \
|
||||
|| error "Linting package failed."
|
||||
|| error_continue "Linting package failed."
|
||||
}
|
||||
|
||||
function lint-regexps {
|
||||
|
Reference in New Issue
Block a user