about summary refs log tree commit diff stats
path: root/pkgs/update.sh
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/update.sh')
-rwxr-xr-xpkgs/update.sh2
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