mirror of
https://github.com/nix-community/naersk
synced 2024-11-10 06:04:17 +00:00
66883c7d6d
I've accidentally broken the script during the recent test refactoring, since now test.nix doesn't evaluate to an attrset.
12 lines
198 B
Text
Executable file
12 lines
198 B
Text
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash
|
|
#!nix-shell -I nixpkgs=./nix
|
|
#!nix-shell -p nix
|
|
|
|
set -euo pipefail
|
|
|
|
echo "Updating README"
|
|
|
|
cat $(nix-build ./readme.nix -A body) > README.md
|
|
|
|
echo done
|