From 40da4395e6ebc57b9acb3e710f2431190be1239f Mon Sep 17 00:00:00 2001 From: Benjamin Schieder Date: Thu, 4 Mar 2004 13:42:32 +0000 Subject: [PATCH] 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 --- misc/archive/fmnewpackage.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/misc/archive/fmnewpackage.sh b/misc/archive/fmnewpackage.sh index e813730cc..0a526d335 100644 --- a/misc/archive/fmnewpackage.sh +++ b/misc/archive/fmnewpackage.sh @@ -79,11 +79,11 @@ read_fm_config() { # grep trove categories for status IDs for trove_id in `grep '' $fmname.xml | sed 's,.*\(.*\),\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