Parent Directory | Revision Log | Revision Graph
Filename cleanup
1 | #!/bin/sh |
2 | |
3 | for file in *.rpm |
4 | do |
5 | arch=$(basename $file .rpm | sed -e 's/.*\.//') |
6 | |
7 | case $arch in |
8 | src) TARGET=/builds/rpms/SRPMS ;; |
9 | |
10 | *) TARGET=/builds/rpms/RPMS/$arch ;; |
11 | esac |
12 | |
13 | if [ -f $TARGET/$file ] |
14 | then |
15 | echo "$TARGET/$file exists" |
16 | continue |
17 | else |
18 | [ -d $TARGET ] && mkdir -p $TARGET |
19 | |
20 | # XXX - FIXME - Force signing of RPMs before release |
21 | rpm -K $file |
22 | cp $file TARGET |
23 | fi |
24 | done |
admin@koozali.org | ViewVC Help |
Powered by ViewVC 1.2.1 |