~veebers/pbuilderjenkins/nux

1 by Christopher Lee
Initial commit (with some fleshed out scripts)
1
#!/bin/bash
2
3
set -ex
4
5
hooks="build_hooks/B*"
6
7
for h in $hooks
8
do
9
	$h
10
done
11