Merge pull request #742 from techman83/override_0.23

Fix testing fail when 0.23 is supplied
This commit is contained in:
Matthew 2015-08-17 07:52:23 -04:00
commit 12fba6e08c
1 changed files with 8 additions and 0 deletions

View File

@ -41,6 +41,14 @@ create_dummy_ksp () {
# TODO: Manual hack, a better way to handle this kind of identifiers may be needed. # TODO: Manual hack, a better way to handle this kind of identifiers may be needed.
case $KSP_VERSION in case $KSP_VERSION in
"0.23")
echo "Overidding '0.23' with '0.23.0'"
KSP_VERSION="0.23.0"
;;
"0.25")
echo "Overidding '0.25' with '0.25.0'"
KSP_VERSION="0.25.0"
;;
"0.90") "0.90")
echo "Overidding '0.90' with '0.90.0'" echo "Overidding '0.90' with '0.90.0'"
KSP_VERSION="0.90.0" KSP_VERSION="0.90.0"