emacs-overlay/update
adisbladis 6cce77a786
Port CI over to Gitlab CI from Buildkite
Buildkite never worked properly for whatever reason and I'm tired of debugging
2019-08-17 23:55:02 +01:00

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