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