diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-11-05 22:39:12 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-11-05 22:39:12 +0000 |
commit | 130ca292c7838556caba3c7e8f370d29e108ead7 (patch) | |
tree | 21adb032af68b464f7b34e3861f5ac1021881ca2 /scripts/buildinstall | |
parent | f101dff0741aa5e6be208d07cee327af3e0a727f (diff) | |
download | anaconda-130ca292c7838556caba3c7e8f370d29e108ead7.tar.gz anaconda-130ca292c7838556caba3c7e8f370d29e108ead7.tar.xz anaconda-130ca292c7838556caba3c7e8f370d29e108ead7.zip |
don't build rawhide images for now so that we can avoid python2.3 breaking
things
Diffstat (limited to 'scripts/buildinstall')
-rwxr-xr-x | scripts/buildinstall | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/buildinstall b/scripts/buildinstall index a8a68020f..ec133c9cf 100755 --- a/scripts/buildinstall +++ b/scripts/buildinstall @@ -58,6 +58,11 @@ while [ $# -gt 0 ]; do esac done +if [ "$(echo $1 |grep rawhide)" ]; + echo "not going to build rawhide images" + exit 1 +fi + if [ -z "$PRODUCTSTR" ]; then usage fi |