Browse Source

Merge branch '2.2.x' into 2.3.x

See gh-24813
pull/25129/head
Madhura Bhave 5 years ago
parent
commit
f57adde61c
  1. 2
      ci/scripts/detect-docker-updates.sh

2
ci/scripts/detect-docker-updates.sh

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
#!/bin/bash
latest_version=$(curl -I -s https://github.com/docker/docker-ce/releases/latest | awk '{print tolower($0)}' | grep "location:" | awk '{n=split($0, parts, "/"); print substr(parts[n],2);}' | awk '{$1=$1;print}' | tr -d '\r' | tr -d '\n' )
latest_version=$(curl -I -s https://github.com/docker/docker-ce/releases/latest | grep -i "location:" | awk '{n=split($0, parts, "/"); print substr(parts[n],2);}' | awk '{$1=$1;print}' | tr -d '\r' | tr -d '\n' )
if [[ $latest_version =~ (beta|rc) ]]; then
echo "Skip pre-release versions"

Loading…
Cancel
Save