mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 20:23:02 +00:00
8 lines
180 B
Bash
Executable File
8 lines
180 B
Bash
Executable File
#!/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
|