aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/update-everything.sh12
1 files changed, 5 insertions, 7 deletions
diff --git a/bin/update-everything.sh b/bin/update-everything.sh
index 5845b71..5bced73 100755
--- a/bin/update-everything.sh
+++ b/bin/update-everything.sh
@@ -67,10 +67,8 @@ non_free_update(){
pushd ~/workbench/auto-void-packages || exit 1
./update-git-repo.sh
cd ../void-packages || exit 1
- ./xbps-src pkg discord && \
- $xi --repository=hostdir/binpkgs/nonfree discord
- ./xbps-src pkg spotify && \
- $xi --repository=hostdir/binpkgs/nonfree spotify
+ ./xbps-src pkg discord && $xi --repository=hostdir/binpkgs/nonfree discord
+ ./xbps-src pkg vagrant && $xi --repository=hostdir/binpkgs/nonfree vagrant
popd || exit 1
}
@@ -81,9 +79,9 @@ pip_update(){
printf_n_notify "pip update"
- python3 -m pip list --outdated --format=json | \
+ "$HOME/workbench/pyvenv/bin/pip3" list --outdated --format=json | \
jq -r '.[] | "\(.name)==\(.latest_version)"' | \
- xargs -n1 pip3 install -U
+ xargs -n1 "$HOME/workbench/pyvenv/bin/pip3" install --upgrade
}
@@ -118,7 +116,7 @@ remote_update
printf_accross_width "%"
non_free_update
printf_accross_width "%"
-#pip_update # 2023/01/09 : currently not a stable solution to update pip packages
+pip_update
printf_accross_width "%"
update_scripts_repo
printf_accross_width "%"