fix shellcheck warnings

This commit is contained in:
Jörg Thalheim
2024-07-08 16:24:03 +02:00
parent c694cdf4b4
commit 516fae29b6

View File

@@ -1,7 +1,8 @@
# shellcheck shell=bash # shellcheck shell=bash
source_up source_up
watch_file $(find ./nix -name "*.nix" -printf '%p ') mapfile -d '' -t nix_files < <(find ./nix -name "*.nix" -print0)
watch_file "${nix_files[@]}"
# Because we depend on nixpkgs sources, uploading to builders takes a long time # Because we depend on nixpkgs sources, uploading to builders takes a long time
use flake .#docs --builders '' use flake .#docs --builders ''