Change package order

This commit is contained in:
ItsDrike 2020-10-22 19:45:59 +02:00
parent 86317465ce
commit 4623175ea5
No known key found for this signature in database
GPG key ID: F4E8FF4F6AC7F3B4
2 changed files with 5 additions and 4 deletions

View file

@ -1,8 +1,9 @@
pacman:
- vim
git:
- https://aur.archlinux.org/yay-git.git
aur:
- spotify
git:
- https://aur.archlinux.org/yay-git.git

View file

@ -15,10 +15,10 @@ def obtain_packages() -> t.List[Package]:
git_packages = yaml_file["git"]
packages = []
for package in git_packages:
packages.append(Package(package, git=True))
for package in pacman_packages:
packages.append(Package(package))
for package in git_packages:
packages.append(Package(package, git=True))
for package in aur_packages:
packages.append(Package(package, aur=True))