Update linutil-installer.sh

This commit is contained in:
solomoncyj 2024-10-16 09:05:46 +08:00 committed by GitHub
parent 9215033b83
commit 54f7e462ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,10 +27,10 @@ installLinutil() {
;;
zypper)
printf '%s\n' 'detecting flavor'
[ zypper lr | grep -i "Tumbleweed" ] && flavor="Tumbleweed" || flavor="Slowroll"
[ zypper lr | grep -q "Tumbleweed" ] && flavor="Tumbleweed" || flavor="Slowroll"
printf '%b%s%b\n' "flavor detected is ${GREEN}" "$flavor" "$RC"
printf "\n" "setting up repos..."
if [ $flavor == "Tumbleweed" ]
printf "\n" "setting up repos"
if [[ $flavor == Tumbleweed ]]
then
"$ESCALATION_TOOL" "$PACKAGER" --gpg-auto-import-keys addrepo https://download.opensuse.org/repositories/home:solomoncyj/openSUSE_Tumbleweed/home:solomoncyj.repo
fi