projects
/
pharext
/
replicator.pharext.org
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
|
github
raw
|
patch
| inline |
side by side
(parent:
8aa1286
)
fix signing
author
Michael Wallner
<root@s201809.m6w6.name>
Tue, 10 Sep 2019 13:05:35 +0000
(15:05 +0200)
committer
Michael Wallner
<root@s201809.m6w6.name>
Tue, 10 Sep 2019 13:05:35 +0000
(15:05 +0200)
bin/pecl+sig
patch
|
blob
|
history
diff --git
a/bin/pecl+sig
b/bin/pecl+sig
index 85bc2b5720c003c8dd6c56ab1c61d2b7715795de..7c6b9af7ec5acb99b86aee0e3332d4a28aff458c 100755
(executable)
--- a/
bin/pecl+sig
+++ b/
bin/pecl+sig
@@
-24,9
+24,11
@@
function fail($pkg, $ver, $skp, $fmt) {
}
function sign($pkg, $ext) {
- $fmt = "%s/%s-sign %s %s";
+ $fmt = "%s/%s-sign %s %s
%s
";
foreach (["rsa", "gpg"] as $sig) {
- passthru(sprintf($fmt, __DIR__, $sig, $pkg, $ext));
+ foreach (["", ".gz", ".bz2"] as $typ) {
+ passthru(sprintf($fmt, __DIR__, $sig, $pkg, $ext, $typ));
+ }
}
}