diff options
Diffstat (limited to 'pkgs')
-rwxr-xr-x | pkgs/update.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/update.sh b/pkgs/update.sh index d84c828e..73132a0f 100755 --- a/pkgs/update.sh +++ b/pkgs/update.sh @@ -12,7 +12,7 @@ cd ./by-name || die "(BUG): The directory './by-name' does not exist?" files_with_update="$(mktemp)"; trap 'rm "$files_with_update"' EXIT -fd update.sh . --type file --extension sh --max-depth 3 | while read -r file; do +fd '^update.sh$' . --type file --extension sh --max-depth 3 | while read -r file; do grep -q "nix flake update" "$file" && echo "$file" >> "$files_with_update" done |