Skip to content

Commit f2a34a7

Browse files
committed
Add version info
1 parent 0057894 commit f2a34a7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tools/scripts/check_cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [[ -x "${CMAKE}" ]] && "${CMAKE}" --version >/dev/null; then
2626
echo 'CMake is installed.' >&2
2727
exit 0
2828
else
29-
echo 'ERROR: missing dependency. Please download CMake (https://cmake.org/). Once installed, run the command again.' >&2
29+
echo 'ERROR: missing dependency. Please download CMake version >= 3.4.3 (https://cmake.org/). Once installed, run the command again.' >&2
3030
exit 1
3131
fi
3232

tools/scripts/check_gfortran

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [[ -x "${GFORTRAN}" ]] && "${GFORTRAN}" --version >/dev/null; then
2626
echo 'gfortran is installed.' >&2
2727
exit 0
2828
else
29-
echo 'ERROR: missing dependency. Please download gfortran (https://gcc.gnu.org/fortran/). Once installed, run the command again.' >&2
29+
echo 'ERROR: missing dependency. Please download gfortran version >= 4.8 (https://gcc.gnu.org/fortran/). Once installed, run the command again.' >&2
3030
exit 1
3131
fi
3232

tools/scripts/check_pandoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [[ -x "${PANDOC}" ]] && "${PANDOC}" -v >/dev/null; then
2626
echo 'pandoc is installed.' >&2
2727
exit 0
2828
else
29-
echo 'ERROR: missing dependency. Please download pandoc (http://pandoc.org/). Once installed, run the command again.' >&2
29+
echo 'ERROR: missing dependency. Please download pandoc version >= 1.18 (http://pandoc.org/). Once installed, run the command again.' >&2
3030
exit 1
3131
fi
3232

tools/scripts/check_python

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [[ -x "${PYTHON}" ]] && "${PYTHON}" --version >/dev/null; then
2626
echo 'Python is installed.' >&2
2727
exit 0
2828
else
29-
echo 'ERROR: missing dependency. Please download Python (https://www.python.org/). Once installed, run the command again.' >&2
29+
echo 'ERROR: missing dependency. Please download Python version >= 2.7 (https://www.python.org/). Once installed, run the command again.' >&2
3030
exit 1
3131
fi
3232

0 commit comments

Comments
 (0)