This commit is contained in:
nekohepott 2026-06-17 04:16:24 +03:00
parent 5855e573a9
commit 5a27e7cff9
No known key found for this signature in database

View File

@ -6,6 +6,7 @@ import (
"os"
"os/exec"
"regexp"
"strconv"
"strings"
)
@ -155,7 +156,7 @@ func getPkgs() string {
if err != nil {
return "can't get nix packages"
}
return string(rune(len(entries))) + " (nix)"
return strconv.Itoa(len(entries)) + " (nix)"
}
return "unknown"
}