mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2025-06-29 20:20:41 +00:00
Change package order
This commit is contained in:
parent
86317465ce
commit
4623175ea5
2 changed files with 5 additions and 4 deletions
|
@ -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))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue