mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
10 lines
221 B
Bash
10 lines
221 B
Bash
|
#!/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
|