repo.or.cz
/
git.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
What's cooking (2015/05 #04)
[git.git]
/
RelUpload
blob
4167903cac6ef377c5929410e30efe50ca5481d0
1
#!/bin/sh
2
3
kup
=
..
/
kup
/
kup
4
5
for
s
in
git-
*
.sig
6
do
7
test -f
"
$s
"
&&
8
v
=
$
(
expr
"
$s
"
:
'^git.*-\([^-]*\)\.tar\.sig$'
) &&
9
case
"
$v
"
in
10
*
.rc
[
0
-9
]*)
11
dest
=/
pub
/
software
/
scm
/
git
/
testing
/ ;;
12
*)
13
dest
=/
pub
/
software
/
scm
/
git
/ ;;
14
esac
&&
15
16
$kup
--host
kup.kernel.org put
"
${s%.sig}
.gz"
"
$s
"
"
$dest
"
||
exit
17
done