mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-01 16:15:04 -04:00
13 lines
269 B
Python
13 lines
269 B
Python
|
self.description = "Check the mode of default files in a package"
|
||
|
|
||
|
p = pmpkg("pkg1")
|
||
|
p.files = ["bin/foo"
|
||
|
"bin/bar"]
|
||
|
self.addpkg(p)
|
||
|
|
||
|
self.args = "-U %s" % p.filename()
|
||
|
|
||
|
self.addrule("PACMAN_RETCODE=0")
|
||
|
for f in p.files:
|
||
|
self.addrule("FILE_MODE=%s|644" % f)
|