summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParabola git <git@parabola.nu>2020-11-12 03:00:02 +0000
committerParabola git <git@parabola.nu>2020-11-12 03:00:02 +0000
commit958ddd1b6fd792e152ad507ce3d86a4685f6f662 (patch)
tree32f34037cfbaf5ca8cac93ca022364ad06c37cea
parent85d436af0231bf1657ff8cb6574d0adc00883d8f (diff)
Update from cron
-rwxr-xr-xabslibre/abslibre.git/hooks/pre-receive13
1 files changed, 13 insertions, 0 deletions
diff --git a/abslibre/abslibre.git/hooks/pre-receive b/abslibre/abslibre.git/hooks/pre-receive
new file mode 100755
index 0000000..b00ba51
--- /dev/null
+++ b/abslibre/abslibre.git/hooks/pre-receive
@@ -0,0 +1,13 @@
+#!/usr/bin/env bash
+set -e
+
+readonly REBUILD_PKGS=(
+ libre/lxappearance-obconf-gtk3
+)
+
+
+# rebuild/sign per autobuilder
+for pkg in ${REBUILD_PKGS[@]}
+do echo '==> Rebuilding ${pkg} ...'
+ ~autobuilder/.local/bin/autobuild ${pkg}
+done