Skip to content

Commit

Permalink
installer now downloads concept 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jmd-dk committed Jan 16, 2018
1 parent 15e828c commit fc56936
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion installer
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ set_version()
# link to the version given by the middle column is broken.
# In case of CO𝘕CEPT and CLASS, possible versions are the corresponding
# GitHub branches and releases.
set_version "concept" "master"
set_version "concept" "0.1.0"
set_version "class" "2.6.3"
set_version "fftw" "3.3.7" "3.3.5"
set_version "fftw_for_gadget" "2.1.5" "2.1.5" # Do not change
Expand Down Expand Up @@ -1441,6 +1441,7 @@ if [ "${concept_install}" == "yes" ]; then
if [ "${concept_version}" == "master" ]; then
concept_url="https://github.com/jmd-dk/concept/archive/${concept_version}.tar.gz"
else
concept_version="${concept_version/v/}"
concept_url="https://github.com/jmd-dk/concept/archive/v${concept_version}.tar.gz"
fi
# Check if already downloaded/installed
Expand All @@ -1465,6 +1466,7 @@ if [ "${class_install}" == "yes" ]; then
if [ "${ndots}" == 1 ]; then
class_url="https://github.com/lesgourg/class_public/archive/${class_version}.tar.gz"
elif [ "${ndots}" == 2 ]; then
class_version=${class_version/v/}
class_url="https://github.com/lesgourg/class_public/archive/v${class_version}.tar.gz"
else
error "No CLASS URL known for version ${class_version}"
Expand Down

0 comments on commit fc56936

Please sign in to comment.