Skip to content

Commit

Permalink
Bump version to 1.0.24
Browse files Browse the repository at this point in the history
Don't fail if initial portage update doesn't work, as the subsequent
@world emerge should sort this out (together with any deps)

Merge pull request #9 from lacc97/no-force-makeopts
Don't force MAKEOPTS or EMERGE_DEFAULT_OPTS
  • Loading branch information
sakaki- committed Aug 25, 2019
1 parent a91c2eb commit f3ee0b9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions genup
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ shopt -s nullglob

# ********************** variables *********************
PROGNAME="$(basename "${0}")"
VERSION="1.0.23"
VERSION="1.0.24"
ETCPROFILE="/etc/profile"
UPDATERSDIR="/etc/${PROGNAME}/updaters.d"
RED_TEXT="" GREEN_TEXT="" YELLOW_TEXT="" RESET_ATTS="" ALERT_TEXT=""
Expand Down Expand Up @@ -232,7 +232,9 @@ remove_any_prior_emerge_resume_history() {
}
ensure_portage_itself_is_up_to_date() {
show "Bringing Portage itself up to date..."
${EMERGE} ${VERBOSITYFLAG} --oneshot --update sys-apps/portage
# don't fail on this, as an @world update may solve any blocks
${EMERGE} ${VERBOSITYFLAG} --oneshot --update sys-apps/portage || \
warning "Could not update Portage: proceeding anyway"
}

ensure_genup_itself_is_up_to_date() {
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.23: May 2019"
.TH GENUP 8 "Version 1.0.24: August 2019"
.SH NAME
genup \- update Portage tree, all installed packages, and kernel
.SH SYNOPSIS
Expand Down

0 comments on commit f3ee0b9

Please sign in to comment.