Commit 2f84d79d authored by Vitaly Lipatov's avatar Vitaly Lipatov

fix replace p5<->M50

parent 364e4248
...@@ -64,23 +64,19 @@ set_binaryrepo() ...@@ -64,23 +64,19 @@ set_binaryrepo()
return return
fi fi
test -z "$1" && return test -z "$1" && return
if [ -n "$UPDATES" ] ; then BINARYREPO="`get_altdistr_version $1`"
BINARYREPO="`get_altdistr_version $1`"
else
BINARYREPO="`get_altdistr_version $1`"
fi
} }
# M50 -> 5.0 # M50 -> 5.0
get_altdistr_version() get_altdistr_version()
{ {
echo "$1" | sed -e "s|M\([0-9]\)\([0-9]\)|\1\.\2|g" | sed -e "s|SS|sisyphus|g" | sed -e "s|DD|daedalus|g" | sed -e "s|Sisyphus|sisyphus|g" echo "$1" | sed -e "s|M\([0-9]\)\([0-9]\)|\1\.\2|g" | sed -e "s|SS|sisyphus|g" | sed -e "s|DD|daedalus|g" | sed -e "s|Sisyphus|sisyphus|g" | sed -e "s|M50|p5|g"
} }
# 5.0 -> M50 # 5.0 -> M50
get_altdistr_mod() get_altdistr_mod()
{ {
echo "$1" | sed -e "s|\([0-9]\)\.\([0-9]\)|M\1\2|g" | sed -e "s|Sisyphus|SS|g" | sed -e "s|sisyphus|SS|g" echo "$1" | sed -e "s|\([0-9]\)\.\([0-9]\)|M\1\2|g" | sed -e "s|Sisyphus|SS|g" | sed -e "s|sisyphus|SS|g" | sed -e "s|p5|M50|g"
} }
# TODO: include in sisyphus_check # TODO: include in sisyphus_check
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment