Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for lives (0.16 sec)

  1. scripts/docs-live.sh

    euri10 <******@****.***> 1552756753 +0100
    Shell Script
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 16 17:19:13 GMT 2019
    - 66 bytes
    - Viewed (0)
  2. deploy_website.sh

    REPO="******@****.***:square/okhttp.git"
    DIR=temp-clone
    
    # Delete any existing temporary website clone
    rm -rf $DIR
    
    # Clone the current repo into temp folder
    git clone $REPO $DIR
    # Replace `git clone` with these lines to hack on the website locally
    # cp -a . "../okhttp-website"
    # mv "../okhttp-website" "$DIR"
    
    # Move working directory into temp folder
    cd $DIR
    
    # Generate the API docs
    ./gradlew dokkaHtmlMultiModule
    
    Shell Script
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Nov 20 15:26:12 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  3. .teamcity/mvnw

        if [ -d "${wdir}" ]; then
          wdir=`cd "$wdir/.."; pwd`
        fi
        # end of workaround
      done
      echo "${basedir}"
    }
    
    # concatenates all lines of a file
    concat_lines() {
      if [ -f "$1" ]; then
        echo "$(tr -s '\n' ' ' < "$1")"
      fi
    }
    
    BASE_DIR=`find_maven_basedir "$(pwd)"`
    if [ -z "$BASE_DIR" ]; then
      exit 1;
    fi
    
    Shell Script
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 9.8K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/setup.packages.sh

    # Usage: setup.packages.sh <package_list.txt>
    set -e
    
    # Prevent apt install tzinfo from asking our location (assumes UTC)
    export DEBIAN_FRONTEND=noninteractive
    
    apt-get update
    # Remove commented lines and blank lines
    apt-get install -y --no-install-recommends $(sed -e '/^\s*#.*$/d' -e '/^\s*$/d' "$1" | sort -u)
    Shell Script
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Sep 29 00:26:34 GMT 2023
    - 1.1K bytes
    - Viewed (0)
Back to top