fix
This commit is contained in:
parent
4024e9f592
commit
11915c10be
@ -1,6 +1,7 @@
|
||||
package providers
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
"os/exec"
|
||||
"strconv"
|
||||
@ -26,7 +27,7 @@ func getPmPackages(packagerName string, packagerPath string) string {
|
||||
if err != nil {
|
||||
return "error reading apk package list"
|
||||
}
|
||||
return strconv.Itoa(len(pkgs)) + " (apk)"
|
||||
return fmt.Sprintf(string(pkgs) + " (apk)")
|
||||
}
|
||||
return strconv.Itoa(len(pkgs)) + " (" + packagerName + ")"
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user