mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 16:53:40 +00:00
8 lines
180 B
Plaintext
8 lines
180 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
SCRIPT_DIR="$( cd "$(dirname "$0")" ; pwd -P )"
|
||
|
cd "$SCRIPT_DIR"
|
||
|
|
||
|
nix-build --no-out-link update-manual.nix | xargs -n 1 -P $(nproc) bash -c
|