needing to revamp the run() command..

This commit is contained in:
pika 2025-05-21 19:11:50 +02:00
parent 8afaa6d745
commit bc95f25101

View file

@ -159,7 +159,7 @@ source-script() {
source_script "$1"
}
run() {
run-silent() {
[[ -z $silent ]] &&
"$@" ||
# else
@ -359,6 +359,7 @@ _setup() {
# ─< Distribution detection and installation >────────────────────────────────────────
get_packager() {
# ─< define fallback function >───────────────────────────────────────────────────────────
fallback() {
# ─────────────────────────────────────< get packager >─────────────────────────────────────
local pkger=""
@ -513,12 +514,12 @@ dist_setup() {
aur=false
fi
;;
alpine)
_setup alpine
;;
opensuse)
_setup opensuse
alpine | opensuse)
_setup $distro
;;
# opensuse)
# _setup opensuse
# ;;
esac
}