Add sonder

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-08-16 13:21:47 +03:00
parent f0554a6a61
commit bbe3219985
7 changed files with 14 additions and 9 deletions

View File

@@ -4,7 +4,7 @@ set -o errexit
set -o nounset
set -o pipefail
find packages -type f -name "*.nix" | while read -r file; do
find . -type f -name "*.nix" | while read -r file; do
update_command=$(grep -oP '^#\s*AUTO-UPDATE:\s*\K.+' "$file" || true)
if [[ -n "$update_command" ]]; then
echo "Running update command in: $file"