Dotfiles/site-modules/core/files/bin/codeclimate

12 lines
278 B
Text
Raw Permalink Normal View History

#!/bin/bash
set -e
docker run \
--interactive --rm \
--env CODECLIMATE_CODE="$PWD" \
--env CODECLIMATE_DEBUG="$CODECLIMATE_DEBUG" \
--volume "$PWD":/code \
--volume /var/run/docker.sock:/var/run/docker.sock \
--volume /tmp/cc:/tmp/cc \
codeclimate/codeclimate $@