Sha256: 8aab84cd7116445643891b31be27b1246fc8237a0da154bd83b9811afe0be986

Contents?: true

Size: 543 Bytes

Versions: 29

Compression:

Stored size: 543 Bytes

Contents

#!/bin/bash

set -eu

LINTJE_VERSION="0.6.1"

mkdir -p $HOME/bin
cache_key=v1-lintje-$LINTJE_VERSION
cache restore $cache_key

# File exists and is executable
if [ -x "$HOME/bin/lintje" ]; then
  echo "Restored Lintje $LINTJE_VERSION from cache"
else
  echo "Downloading Lintje $LINTJE_VERSION"
  curl -L \
    https://github.com/tombruijn/lintje/releases/download/v$LINTJE_VERSION/x86_64-unknown-linux-gnu.tar.gz | \
    tar -xz --directory $HOME/bin
  cache store $cache_key $HOME/bin/lintje
fi

$HOME/bin/lintje $SEMAPHORE_GIT_COMMIT_RANGE

Version data entries

29 entries across 29 versions & 2 rubygems

Version Path
appsignal-3.0.20 script/lint_git
appsignal-3.0.19-java script/lint_git
appsignal-3.0.19 script/lint_git
appsignal-3.0.18-java script/lint_git
appsignal-3.0.18 script/lint_git
appsignal-3.0.17-java script/lint_git
appsignal-3.0.17 script/lint_git
appsignal-3.0.16-java script/lint_git
appsignal-3.0.16 script/lint_git