only $2 necessary for dialog message
This commit is contained in:
parent
acd2757bf4
commit
bab6a2824f
1 changed files with 3 additions and 3 deletions
6
larbs.sh
6
larbs.sh
|
@ -72,7 +72,7 @@ adduserandpass() { \
|
|||
|
||||
gitmakeinstall() {
|
||||
dir=$(mktemp -d)
|
||||
dialog --title "LARBS Installation" --infobox "Installing \`$(basename $1)\` ($n of $total) via \`git\` and \`make\`. $(basename $1) ${@:2}." 5 70
|
||||
dialog --title "LARBS Installation" --infobox "Installing \`$(basename $1)\` ($n of $total) via \`git\` and \`make\`. $(basename $1) $2." 5 70
|
||||
git clone --depth 1 "$1" $dir &>/dev/null
|
||||
cd $dir
|
||||
make &>/dev/null
|
||||
|
@ -80,12 +80,12 @@ gitmakeinstall() {
|
|||
cd /tmp ;}
|
||||
|
||||
maininstall() { # Installs all needed programs from main repo.
|
||||
dialog --title "LARBS Installation" --infobox "Installing \`$1\` ($n of $total). $1 ${@:2}." 5 70
|
||||
dialog --title "LARBS Installation" --infobox "Installing \`$1\` ($n of $total). $1 $2." 5 70
|
||||
pacman --noconfirm --needed -S "$1" &>/dev/null
|
||||
}
|
||||
|
||||
aurinstall() { \
|
||||
dialog --title "LARBS Installation" --infobox "Installing \`$1\` ($n of $total) from the AUR. $1 ${@:2}." 5 70
|
||||
dialog --title "LARBS Installation" --infobox "Installing \`$1\` ($n of $total) from the AUR. $1 $2." 5 70
|
||||
grep "^$1$" <<< "$aurinstalled" && return
|
||||
sudo -u $name $aurhelper -S --noconfirm "$1" &>/dev/null
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue