Bubble proxy service
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

11 行
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