che-server/dockerfiles/base
Florent BENOIT 63b440af28 Use of version_lt function instead of less than (#5141)
less_than is not working with for example “5.9.1” and “5.10.0”, 5.9.0 being said to be a greater version

bash-4.3# version_lt "5.9.0" "5.10.1"
—> 0

bash-4.3# less_than "5.9.0" "5.10.1"
—> 1

bash-4.3# less_than "5.6" "5.8"
—> 0

Change-Id: I33417f012c193416bfb746df125c19e92a868b4e
note: version_lt is a less and equals method, so we need to exclude the condition : tag == base version
Signed-off-by: Florent BENOIT <fbenoit@codenvy.com>
2017-05-19 17:18:20 +02:00
..
scripts Use of version_lt function instead of less than (#5141) 2017-05-19 17:18:20 +02:00
Dockerfile Refactor CLI: Faster boot, add `--help` global option, standardize command lifecycle (#4006) 2017-02-06 07:37:08 -08:00
build.sh Customize image names during image build (#4336) 2017-03-10 13:41:45 +01:00