Bubble proxy service
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 rivejä
247 B

  1. #!/bin/bash
  2. #
  3. # Called by jenkins to update version.rs with the current build number
  4. #
  5. if [[ -z "${BUILD_NUMBER}" ]] ; then
  6. echo "No BUILD_NUMBER environment variable was set"
  7. exit 1
  8. fi
  9. sed -i "s/.DEV_BUILD/\.${BUILD_NUMBER}/" src/version.rs