aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Anderson <telans@posteo.de>2021-06-17 16:37:11 +1200
committerTheo Anderson <telans@posteo.de>2021-06-17 16:51:06 +1200
commitc738bdab3a5e364822bd6899875cc77c2213fa29 (patch)
treebfc09be2b14bbde16259f19b0f5e15d427bc204f /scripts
parentapp-editors/micro: update LICENSE (diff)
downloadguru-c738bdab3a5e364822bd6899875cc77c2213fa29.tar.gz
guru-c738bdab3a5e364822bd6899875cc77c2213fa29.tar.bz2
guru-c738bdab3a5e364822bd6899875cc77c2213fa29.zip
scripts/setup-and-run-repoman.sh: checkout portage tag
checking out any current repoman version tag puts portage into a version where EAPI 8 support is not enabled Signed-off-by: Theo Anderson <telans@posteo.de>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/setup-and-run-repoman.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/setup-and-run-repoman.sh b/scripts/setup-and-run-repoman.sh
index 471a05181..f45bee9e7 100755
--- a/scripts/setup-and-run-repoman.sh
+++ b/scripts/setup-and-run-repoman.sh
@@ -1,5 +1,6 @@
#! /usr/bin/env bash
# Maintainer: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
+# Maintainer: Theo Anderson <telans@posteo.de>
#
# This sets up repoman and runs the latest version
#
@@ -16,7 +17,7 @@ git clone https://github.com/gentoo/portage.git
cd portage
# Get all versions, and read into array
-mapfile -t RM_VERSIONS < <( git tag | grep repoman | sort -uV )
+mapfile -t RM_VERSIONS < <( git tag | grep portage | sort -uV )
# Select latests version (last element in array)
RM_VERS="${RM_VERSIONS[-1]}"