run.sh 365 B

1234567891011121314
  1. #!/bin/sh
  2. # try to fetch the latest version from github
  3. wget -O support.sh.new https://raw.githubusercontent.com/docker/libnetwork/master/support/support.sh
  4. if [ "$?" -eq "0" ]; then
  5. mv support.sh.new support.sh
  6. chmod +x support.sh
  7. else
  8. echo "issue fetching the latest support.sh, will use the container version"
  9. fi
  10. echo "run the support script"
  11. ./support.sh