diff options
author | albator <albator@arcadia.vtf> | 2011-11-09 20:57:28 +0100 |
---|---|---|
committer | albator <albator@arcadia.vtf> | 2011-11-09 20:57:28 +0100 |
commit | d86c76de1cbdf3db15cefbf2c9c30de0d34889c1 (patch) | |
tree | fbdde2f122eb82533040b54a6c405df77f0c9243 /redhat/genrpm.sh | |
parent | db927c1b41d9456da788bfa27d9dc5be880a50df (diff) | |
download | tde-packaging-d86c76de1cbdf3db15cefbf2c9c30de0d34889c1.tar.gz tde-packaging-d86c76de1cbdf3db15cefbf2c9c30de0d34889c1.zip |
RHEL/Fedora: some more updates
Diffstat (limited to 'redhat/genrpm.sh')
-rwxr-xr-x | redhat/genrpm.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/redhat/genrpm.sh b/redhat/genrpm.sh index 25ea69be1..d54c88c21 100755 --- a/redhat/genrpm.sh +++ b/redhat/genrpm.sh @@ -43,9 +43,11 @@ if [ -z "${VERSION}" ]; then select VERSION in $*; do break; done elif [ -r "${COMP}/$1" ]; then VERSION="$1" + elif [ "${COMP}" = "trinity-live" ]; then + VERSION="3.5.13" else echo "No source tarball found for '${COMP}' !" - continue + exit 0 fi VERSION="${VERSION##${COMP##*/}-}" VERSION="${VERSION%%.tar.gz}" |