mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 03:44:06 +00:00
.github: util: add support for arbitrary refs to drv_tag() et al.
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
committed by
Enrico Weigelt
parent
e79765bdad
commit
d8a63a7f5f
9
.github/scripts/util.sh
vendored
9
.github/scripts/util.sh
vendored
@@ -112,7 +112,14 @@ xl_mirror() {
|
||||
drv_tag() {
|
||||
local name="$1"
|
||||
local version="$2"
|
||||
echo -n "xlibre-xf86-$name-$version"
|
||||
case "$2" in
|
||||
refs/*)
|
||||
echo -n "$2"
|
||||
;;
|
||||
*)
|
||||
echo -n "xlibre-xf86-$name-$version"
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
build_xf86drv_ac() {
|
||||
|
||||
Reference in New Issue
Block a user