Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author柯豪 <kehao95@gmail.com>2018-12-13 14:12:26 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2018-12-13 14:12:26 +0300
commit760ed040c8ff1ea46c2190091269863cef42817f (patch)
tree892c45737c7a588b2d05ff71d45dffae0120ee45
parent50e147a1e6681a1923d55a09ff5c05118958f958 (diff)
Fix MacOS Mojave detect pattern (#603)
-rw-r--r--include/osdetection2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osdetection b/include/osdetection
index 3395be40..fad60e8c 100644
--- a/include/osdetection
+++ b/include/osdetection
@@ -60,7 +60,7 @@
10.11 | 10.11.[0-9]*) OS_FULLNAME="Mac OS X 10.11 (El Capitan)" ;;
10.12 | 10.12.[0-9]*) OS_FULLNAME="macOS Sierra (${OS_VERSION})" ;;
10.13 | 10.13.[0-9]*) OS_FULLNAME="macOS High Sierra (${OS_VERSION})" ;;
- 10.14 | 10.13.[0-9]*) OS_FULLNAME="macOS Mojave (${OS_VERSION})" ;;
+ 10.14 | 10.14.[0-9]*) OS_FULLNAME="macOS Mojave (${OS_VERSION})" ;;
*) echo "Unknown macOS version. Do you know what version it is? Create an issue at ${PROGRAM_SOURCE}" ;;
esac
else