This commit is contained in:
Geoffrey Frogeye 2020-01-21 21:47:08 +01:00
parent c12ae95001
commit 8652fdb570
2 changed files with 5 additions and 2 deletions

View file

@ -311,7 +311,10 @@ tryPackage() { # packageNames
echo "[ERR] Cannot install package with aliases: $*"
return 1
}
alias i=tryPackage
i() {
tryPackage "$@"
}
installPackages() {
for installerName in $(listInstallers)

View file

@ -182,7 +182,7 @@ then
i reflac # Recompress FLAC files
i pacman-contrib # Pactree and more
i shred # Delete sensititve data
i android-tools && android-udev # Android Debug Bridge
i android-tools && i android-udev # Android Debug Bridge
fi