mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
10 lines
185 B
Bash
10 lines
185 B
Bash
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
NF_NIX_BLACKLIST_FILES=(
|
|
$(find "${NF_NIX_BLACKLIST_DIRS[@]}" -type f)
|
|
)
|
|
|
|
exec deadnix "$@" \
|
|
--no-lambda-arg \
|
|
--exclude "${NF_NIX_BLACKLIST_FILES[@]}"
|