Browse Source

Benjamin Schieder:

fixed status detection in fmnewpackage.sh


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@2470 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Benjamin Schieder 21 years ago
parent
commit
40da4395e6
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      misc/archive/fmnewpackage.sh

+ 3
- 3
misc/archive/fmnewpackage.sh

@ -79,11 +79,11 @@ read_fm_config() {
# grep trove categories for status IDs
for trove_id in `grep '<trove_id>' $fmname.xml | sed 's,.*<trove_id>\(.*\)</trove_id>,\1,g'` ; do
case $trove_id in
3) status="Alpha"
9) status="Alpha"
;;
4) status="Beta"
10) status="Beta"
;;
[56]) status="Stable"
11,12) status="Stable"
;;
# there is no default
esac

Loading…
Cancel
Save