summarylogtreecommitdiffstats
path: root/compile.bash
diff options
context:
space:
mode:
authorXenHat2023-03-27 22:35:20 -0400
committerXenHat2023-03-27 22:35:20 -0400
commit5505549bbd7af61c65b98d4d9b53fc9e22a270c2 (patch)
tree873dd6c045cb550539c7b62e6f9f47b7eb49d1ce /compile.bash
parent34bf3ac0fddaa1ce9c9d4058e2df3cb617b93569 (diff)
downloadaur-5505549bbd7af61c65b98d4d9b53fc9e22a270c2.tar.gz
Install autobuild and dependencies every time.
Trying to avoid it caused more headaches than it is worth.
Diffstat (limited to 'compile.bash')
-rwxr-xr-xcompile.bash12
1 files changed, 4 insertions, 8 deletions
diff --git a/compile.bash b/compile.bash
index 1888be9ec78d..a2efaab80d5d 100755
--- a/compile.bash
+++ b/compile.bash
@@ -17,14 +17,10 @@ prepare() {
venv
fi
- if command -v autobuild >/dev/null 2>&1 && [[ "$(autobuild --version)" == "autobuild 9.0.0" ]]; then
- pip3 uninstall --yes autobuild --quiet
- elif ! command -v autobuild; then
- echo "Installing autobuild..."
- pip3 install --upgrade certifi --quiet
- pip3 install --upgrade llbase --quiet
- pip3 install --no-cache --upgrade autobuild --quiet
- fi
+ echo "Installing autobuild..."
+ pip3 install --upgrade certifi --quiet
+ pip3 install --upgrade llbase --quiet
+ pip3 install --no-cache --upgrade autobuild --quiet
}
build() {