Sha256: 044c98988c2bcf29c0fd3d8cc9533abd52108584f8279c5afb92caf6c21f306e

Contents?: true

Size: 697 Bytes

Versions: 2

Compression:

Stored size: 697 Bytes

Contents

#!/usr/bin/env bash

set -o errexit

if [ "$(uname)" == "Darwin" ]; then
    DOCKER_RUNTIME=${DOCKER_RUNTIME:-'helioncf/hcf-pipeline-ruby-bosh'}

    # We need to mount the enclosing repo in case we are just a submodule
    # (still doesn't support being a nested submodule though)
    ROOT=${PWD}
    if [ -f .git ]; then cd ..; fi
    GIT_ROOT=$(git rev-parse --show-toplevel)
    cd ${ROOT}

    WORK_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"

    docker run \
       --rm \
       --volume ${GIT_ROOT}:${GIT_ROOT} \
       --workdir ${WORK_DIR} \
       --entrypoint bash \
       ${DOCKER_RUNTIME} \
       -l -c "export RBENV_VERSION=2.1.7 && ${BASH_SOURCE[1]}"

    exit
fi

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
configgin-0.12.0 make/include/darwin-support
configgin-0.12.0.pre make/include/darwin-support