diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e37ac6f..ead6e02 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,7 @@ on: [push, pull_request] jobs: test: name: Test Python ${{ matrix.python-version }} + timeout-minutes: 3 strategy: fail-fast: false matrix: diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c23dd3..7ad746f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.6.0 2021-10-29 + +- `aur`: Fix bug negating the condition for using `yay` vs `makepkg` + ## 0.5.0 2021-10-28 - Add `--version` option to the CLI to display the Instater version diff --git a/instater/VERSION b/instater/VERSION index 8f0916f..a918a2a 100644 --- a/instater/VERSION +++ b/instater/VERSION @@ -1 +1 @@ -0.5.0 +0.6.0 diff --git a/instater/tasks/pacman.py b/instater/tasks/pacman.py index 8b19a6c..c7c5541 100644 --- a/instater/tasks/pacman.py +++ b/instater/tasks/pacman.py @@ -60,7 +60,7 @@ def _pacman_install(self, packages: List[str]): def _install(self, packages: List[str]): if self.aur: - if not shutil.which("yay"): + if shutil.which("yay"): self._yay_install(packages) else: self._makepkg_install(packages)