Skip to content

Commit

Permalink
Just warn on error in emerge @module-rebuild.
Browse files Browse the repository at this point in the history
(Previous behaviour was to kill the script.)
  • Loading branch information
sakaki- committed Oct 19, 2014
1 parent 0de0f35 commit b7b8e97
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions genup
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ set -u

# ********************** variables *********************
PROGNAME="$(basename "${0}")"
VERSION="1.0.5"
VERSION="1.0.6"
RED_TEXT="" GREEN_TEXT="" YELLOW_TEXT="" RESET_ATTS=""
if [[ -v TERM && -n "${TERM}" && "${TERM}" != "dumb" ]]; then
RED_TEXT="$(tput setaf 1)$(tput bold)"
Expand Down Expand Up @@ -168,7 +168,8 @@ rebuild_external_modules_if_necessary() {
warning "emerge @module-rebuild completed successfully, but only by restricting"
warning "build parallelism"
else
die "Failed to complete emerge @module-rebuild due to error"
warning "Failed to complete emerge @module-rebuild due to error"
warning "Continuing..."
fi
fi
}
Expand Down
2 changes: 1 addition & 1 deletion genup.8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH GENUP 8 "Version 1.0.5: October 2014"
.TH GENUP 8 "Version 1.0.6: October 2014"
.SH NAME
genup \- update Portage tree, all installed packages, and kernel
.SH SYNOPSIS
Expand Down

0 comments on commit b7b8e97

Please sign in to comment.