We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6f0c39 commit b0b6bb5Copy full SHA for b0b6bb5
docker-entrypoint.sh
@@ -24,16 +24,6 @@ function file_env() {
24
unset "$fileVar"
25
}
26
27
-# usage: version_gte FIRST_VERSON SECOND_VERSION
28
-# e.g.: version_gte $SATOSA_VERSION 8.0.0
29
-# (will return true if the first version number is greater than or
30
-# equal to the second)
31
-function version_gte() {
32
- # https://stackoverflow.com/questions/16989598/comparing-php-version-numbers-using-bash#24067243
33
- test "$(printf '%s\n' "$@" | sort -V | head -n 1)" != "$1" \
34
- || test "$1" = "$2"
35
-}
36
-
37
# check to see if this file is being run or sourced from another
38
# script
39
function _is_sourced() {
0 commit comments