aboutsummaryrefslogtreecommitdiff
path: root/library/yaySetupPkg.sh
diff options
context:
space:
mode:
Diffstat (limited to 'library/yaySetupPkg.sh')
-rwxr-xr-xlibrary/yaySetupPkg.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/library/yaySetupPkg.sh b/library/yaySetupPkg.sh
deleted file mode 100755
index 326a3b4..0000000
--- a/library/yaySetupPkg.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-yaySetupPkg () {
- cd
- git clone https://aur.archlinux.org/yay
-
- cd $HOME/yay
- makepkg -isr
-
- cd
- rm -rf $HOME/yay
-
- if [ "$1" = "pc" ]; then
- yay -S --needed - < "$dirArchIsoFiles"/pkglist.txt
- elif [ "$1" = "notebook" ]; then
- yay -S --needed - < "$dirArchIsoFiles"/pkglistnote.txt
- fi
-}
-
-select platform in "pc" "notebook"; do
- yaySetupPkg "$platform"
-done