mirror of
https://github.com/nix-community/emacs-overlay.git
synced 2025-12-06 02:40:25 -08:00
8 lines
199 B
Text
Executable file
8 lines
199 B
Text
Executable file
#!/usr/bin/env nix-shell
|
|
#! nix-shell -i bash -p bash git
|
|
|
|
for repo in repos/*; do
|
|
$repo/update && (git diff --exit-code $repo > /dev/null || git commit -m "Updated $repo" -- $repo)
|
|
done
|
|
|
|
exit 0
|