mirror of
https://github.com/hercules-ci/arion.git
synced 2024-11-26 10:05:39 +03:00
10 lines
245 B
Plaintext
Executable File
10 lines
245 B
Plaintext
Executable File
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p jq
|
|
|
|
set -eu -o pipefail
|
|
|
|
cd "$(dirname ${BASH_SOURCE[0]})"
|
|
|
|
doc_options="$(nix build .#doc-options --json | jq -r .[].outputs.out)"
|
|
cat "$doc_options" >docs/modules/ROOT/partials/NixOSOptions.adoc
|