mirror of
https://github.com/nmattia/niv.git
synced 2024-11-07 22:36:53 +03:00
12 lines
195 B
Plaintext
Executable File
12 lines
195 B
Plaintext
Executable File
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash
|
|
#!nix-shell -I nixpkgs=./nix
|
|
#!nix-shell -p nix
|
|
#!nix-shell --pure
|
|
|
|
set -euo pipefail
|
|
|
|
echo "Updating README"
|
|
|
|
cat $(nix-build -A readme) > README.md
|