rustimate 0.1.0

A planning poker app, mostly developed to learn Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

## Uses `cargo-flamegraph` to produce an SVG flamegraph of the projects compilation.

set -e
dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
project_dir=${dir}/..
cd $project_dir

sudo cargo flamegraph --bin rustimate --output target/flamegraph.svg -- --help

cargo build
cargo clean -p rustimate
sudo flamegraph -o target/flamegraph-build.svg "cargo build"

sudo chown -R kyle target