mirror of
https://github.com/nix-community/flakelight.git
synced 2025-02-03 02:59:23 +01:00
6 lines
130 B
Bash
6 lines
130 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
TREE=$(mktemp -d)
|
|
git archive "$(git write-tree)" | tar -xC "$TREE"
|
|
nix flake check "$TREE"
|