Tons of hotfixes

This commit is contained in:
Douglas Teles
2026-03-23 14:19:12 -03:00
parent 8c6e686f58
commit 5ba203e756
19 changed files with 33 additions and 1306 deletions
+3
View File
@@ -8,6 +8,9 @@
set -e
# Export OFFICIAL so it reaches scripts/image via make
[ -n "${OFFICIAL}" ] && export OFFICIAL
scripts/checkdeps
if [ -z "${ARCH}" ]; then
+7 -1
View File
@@ -89,7 +89,13 @@ DISTRO_VERSION=$(date +%Y%m%d)
# Get origin url, fix git:// and git@github.com: urls if necessary
ORIGIN_URL="$(git remote -v | awk '$1 == "origin" { print $2 }' | head -1 | sed -e 's#\.git$##' -e 's#^git:#https:#' -e 's#^git@github\.com:#https://github.com/#' -e 's#://.*@#://#')"
eval "$(base64 -d <<< aWYgWyAiJHtPRkZJQ0lBTH0iID0gInllcyIgXTsgdGhlbgogIGV4cG9ydCBPU19CVUlMRD0ib2ZmaWNpYWwiCmVsaWYgWyAiJHtOSUdIVExZfSIgPSAieWVzIiBdOyB0aGVuCiAgZXhwb3J0IE9TX0JVSUxEPSJuaWdodGx5IgplbHNlCiAgZXhwb3J0IE9TX0JVSUxEPSJjb21tdW5pdHkiCmZp)"
if [ "${OFFICIAL}" = "yes" ]; then
export OS_BUILD="official"
elif [ "${NIGHTLY}" = "yes" ]; then
export OS_BUILD="nightly"
else
export OS_BUILD="community"
fi
if [ -n "${CUSTOM_VERSION}" ]; then
DISTRO_VERSION="${CUSTOM_VERSION}"