From 61c1c8df4fcff7e2b261891414d54b585d4da230 Mon Sep 17 00:00:00 2001 From: Andy Mishechkin <57713077+andy-mishechkin@users.noreply.github.com> Date: Wed, 25 Nov 2020 11:13:17 +0400 Subject: [PATCH] gfortran-10 has been added (#2103) * GFortran-10 has been added * Checkin of Ubuntu version has been added --- images/linux/scripts/installers/gfortran.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/images/linux/scripts/installers/gfortran.sh b/images/linux/scripts/installers/gfortran.sh index dc49cb44..b82e8d39 100644 --- a/images/linux/scripts/installers/gfortran.sh +++ b/images/linux/scripts/installers/gfortran.sh @@ -3,6 +3,7 @@ ## File: gfortran.sh ## Desc: Installs GNU Fortran ################################################################################ +source $HELPER_SCRIPTS/os.sh function InstallFortran { version=$1 @@ -27,6 +28,10 @@ versions=( "gfortran-9" ) +if ! isUbuntu16; then + versions+=("gfortran-10") +fi + for version in ${versions[*]} do InstallFortran $version