lsd 1.2.0

An ls command with a lot of pretty colors and some other stuff.
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env bash

set -ex

# Incorporate TARGET env var to the build and test process
cargo build --target "$TARGET" --verbose

# We cannot run arm executables on linux
if [[ $TARGET != arm-unknown-linux-* ]]; then
    cargo test --target "$TARGET" --verbose
fi