mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 02:10:13 +01:00
Setting tags to properly install hyprlang/utils
On branch hl-051 Your branch is up to date with 'origin/hl-051'. Changes to be committed: modified: hypr-tags.env modified: install.sh
This commit is contained in:
parent
95708df841
commit
f776563d3e
@ -4,8 +4,8 @@
|
||||
|
||||
HYPRLAND_TAG=v0.51.1
|
||||
AQUAMARINE_TAG=v0.9.3
|
||||
HYPRUTILS_TAG=v0.8.2
|
||||
HYPRLANG_TAG=v0.6.4
|
||||
HYPRUTILS_TAG=auto
|
||||
HYPRLANG_TAG=auto
|
||||
HYPRGRAPHICS_TAG=v0.1.5
|
||||
HYPRWAYLAND_SCANNER_TAG=v0.4.5
|
||||
HYPRLAND_PROTOCOLS_TAG=v0.6.4
|
||||
|
||||
11
install.sh
11
install.sh
@ -171,6 +171,17 @@ execute_script() {
|
||||
if [ -f "./hypr-tags.env" ]; then
|
||||
# shellcheck disable=SC1091
|
||||
source "./hypr-tags.env"
|
||||
# If core tags are set to auto/latest, refresh to resolve concrete versions
|
||||
if [ "${HYPRUTILS_TAG:-}" = "auto" ] || [ "${HYPRUTILS_TAG:-}" = "latest" ] || [ -z "${HYPRUTILS_TAG:-}" ] || \
|
||||
[ "${HYPRLANG_TAG:-}" = "auto" ] || [ "${HYPRLANG_TAG:-}" = "latest" ] || [ -z "${HYPRLANG_TAG:-}" ]; then
|
||||
if [ -f ./refresh-hypr-tags.sh ]; then
|
||||
chmod +x ./refresh-hypr-tags.sh || true
|
||||
./refresh-hypr-tags.sh
|
||||
# reload after refresh
|
||||
# shellcheck disable=SC1091
|
||||
source "./hypr-tags.env"
|
||||
fi
|
||||
fi
|
||||
export HYPRLAND_TAG AQUAMARINE_TAG HYPRUTILS_TAG HYPRLANG_TAG HYPRGRAPHICS_TAG HYPRWAYLAND_SCANNER_TAG HYPRLAND_PROTOCOLS_TAG HYPRLAND_QT_SUPPORT_TAG HYPRLAND_QTUTILS_TAG WAYLAND_PROTOCOLS_TAG
|
||||
fi
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user