1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

review fixes

This commit is contained in:
aleksei.bukhalov
2025-07-04 14:36:10 +02:00
committed by Leonid Fedorov
parent 6a57129416
commit 09f5df182c
8 changed files with 38 additions and 26 deletions

View File

@ -171,6 +171,16 @@ detect_distro() {
message "Detected $color_yellow$OS $OS_VERSION$color_normal"
}
select_pkg_format() {
local distro="$1"
if [[ "$distro" == *rocky* ]]; then
export PKG_FORMAT="rpm"
else
export PKG_FORMAT="deb"
fi
}
menuStr=""
function hideCursor() {