gclog 0.2.1

A tool to analyze jdk8 gc logs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

# script/lint: Validate formatting and code quality 

set -e

cd "$(dirname "$0")/.."

[ -z "$DEBUG" ] || set -x

echo "==> Running code quality check"

cargo clippy --all-targets --all-features -- -D warnings

echo "==> Running fmt"

cargo fmt --all -- --check