fix for root file permissions
This commit is contained in:
parent
475e72018e
commit
08001a9222
2
build.go
2
build.go
|
@ -215,7 +215,7 @@ func buildPackage(repo *gitpb.Repo) (bool, error) {
|
||||||
log.Info(repo.FullPath, "NOT FOUND ./build HERE")
|
log.Info(repo.FullPath, "NOT FOUND ./build HERE")
|
||||||
}
|
}
|
||||||
|
|
||||||
cmd := []string{"dpkg-deb", "--build", "files", fulldebname}
|
cmd := []string{"dpkg-deb", "--root-owner-group", "--build", "files", fulldebname}
|
||||||
result := repo.RunVerbose(cmd)
|
result := repo.RunVerbose(cmd)
|
||||||
if shell.Exists(fulldebname) {
|
if shell.Exists(fulldebname) {
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue