WSL fixes

This commit is contained in:
2024-10-27 01:33:39 +02:00
parent f3ee35f577
commit e42dd52164
39 changed files with 390367 additions and 390285 deletions

View File

@@ -35,7 +35,7 @@ print_pipx_status() {
count=$(echo $pipx_packages | wc -w)
installed=0
for package in $pipx_packages; do
for package in "${pipx_packages[@]}"; do
if pipx list | grep -q $package; then
installed=$((installed + 1))
else