summary refs log tree commit diff stats
path: root/build.sh
blob: ea323cb72c1e4c921aa53597d15d7dd91f654b7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env sh

[ "$(free --mega | awk '{print $3}' | head -n 2 | tail -n 1)" -lt 2000 ] && {
    echo "Not enough ram. Delete something."
    exit 1
}

nix build .#default --log-format multiline-with-logs

# vim: ft=sh