Browse Source

Merge branch '2.4.x'

Closes gh-26092
pull/26134/head
Phillip Webb 5 years ago
parent
commit
b2b9d55838
  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 | grep -i "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/moby/moby/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