always pre-setup binproviders

This commit is contained in:
Nick Sweeting 2024-11-19 05:24:12 -08:00
parent f8e2f7c753
commit 6b47510f70
No known key found for this signature in database
5 changed files with 13 additions and 1 deletions

View file

@ -12,6 +12,9 @@ from abx_pkg import (
apt = APT_BINPROVIDER = AptProvider()
brew = BREW_BINPROVIDER = BrewProvider()
env = ENV_BINPROVIDER = EnvProvider()
apt.setup()
brew.setup()
env.setup()
@abx.hookimpl(tryfirst=True)