mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
9 lines
223 B
Bash
Executable file
9 lines
223 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -ex
|
|
|
|
mkdir -p docs-build
|
|
nix build github:nix-community/nixvim#docs
|
|
cp -r result/share/doc/* docs-build
|
|
nix build github:nix-community/nixvim/nixos-23.11#docs
|
|
cp -r result/share/doc docs-build/stable
|