From 2b6c1f8e7c7c21281f202518b056776cdeadb7c0 Mon Sep 17 00:00:00 2001 From: Leon Wright Date: Mon, 17 Aug 2015 19:39:35 +0800 Subject: [PATCH 1/2] Fix testing fail when 0.23 is supplied --- build.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.sh b/build.sh index d8c3f05dc5..80c7e53d42 100755 --- a/build.sh +++ b/build.sh @@ -41,6 +41,10 @@ create_dummy_ksp () { # TODO: Manual hack, a better way to handle this kind of identifiers may be needed. case $KSP_VERSION in + "0.23") + echo "Overidding '0.23' with '0.23.0'" + KSP_VERSION="0.23.0" + ;; "0.90") echo "Overidding '0.90' with '0.90.0'" KSP_VERSION="0.90.0" From 17e7a52feb225559af077904d447ce31523d8013 Mon Sep 17 00:00:00 2001 From: Leon Wright Date: Mon, 17 Aug 2015 19:45:23 +0800 Subject: [PATCH 2/2] override for 0.25 as well --- build.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.sh b/build.sh index 80c7e53d42..7938b270d2 100755 --- a/build.sh +++ b/build.sh @@ -45,6 +45,10 @@ create_dummy_ksp () { 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") echo "Overidding '0.90' with '0.90.0'" KSP_VERSION="0.90.0"