create_symlinks: Make an exception for 1.10

This commit is contained in:
Ignacio R. Morelle 2014-10-29 21:38:44 -03:00
parent 11c1976a3b
commit d4f7ebc8ed

View File

@ -12,6 +12,12 @@ MINOR_V=${STABLE#*.}
OLDSTABLE=$MAJOR_V.$(($MINOR_V-2))
DEV=$MAJOR_V.$(($MINOR_V+1))
PREV=$DEV-prev
if [ "$OLDSTABLE" = "1.10" ]; then
# special case for 1.10 since it kept the 1.9 dir
OLDSTABLE="1.9"
fi
echo "oldstable = $OLDSTABLE; stable = $STABLE; dev = $DEV; prev = $PREV"
set -x