Skip to content
Snippets Groups Projects
Select Git revision
  • 448059c5bd23615cd3751c7c2228ff0010847dee
  • main default protected
  • dev protected
  • hotfixes-oct-2022
  • refactor/avatar-cell
  • 1.1.5
  • 1.1.4
  • 1.1.3
  • 1.1
  • 1.0.8
  • 1.0.7
  • 1.0.6
12 results

PresentTermsAndConditions.swift

Blame
  • bump-build-number.sh 415 B
    #!/bin/sh
    
    script_dir=$(dirname $(realpath $0))
    project_dir="$script_dir/Project"
    repo_dir="$script_dir/../../"
    
    if [ -n "$(git -C $repo_dir status --porcelain)" ]; then 
      echo "Repository has uncommitted changes!"
      exit 1
    fi
    
    cd $project_dir
    xcrun agvtool next-version
    build_number=$(xcrun agvtool what-version -terse)
    
    cd $repo_dir
    git commit -a -m "Bump xx-messenger example app build number to $build_number"