make ppp sign and add to repo as well

This commit is contained in:
ferrreo 2023-09-05 09:32:01 +01:00
parent ac7142f5db
commit 588ccf43e6
2 changed files with 1 additions and 1 deletions

BIN
ppp

Binary file not shown.

View File

@ -165,7 +165,7 @@ func signFiles(path string) {
for _, file := range files { for _, file := range files {
if strings.HasSuffix(file, ".deb") { if strings.HasSuffix(file, ".deb") {
fmt.Printf("Signing %s \n", file) fmt.Printf("Signing %s \n", file)
cmd := exec.Command("dpkg-sig", "--sign", "builder", file) cmd := exec.Command("dpkg-sig", "--sign", "builder", path+file)
err := cmd.Run() err := cmd.Run()
if err != nil { if err != nil {
panic(err) panic(err)