~veebers/pbuilderjenkins/nux

« back to all changes in this revision

Viewing changes to hooks/C00error_hooks

  • Committer: Christopher Lee
  • Date: 2012-06-29 04:17:46 UTC
  • Revision ID: chris.lee@canonical.com-20120629041746-5rcowoxha4wfnd9f
Initial commit (with some fleshed out scripts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
set -ex
 
4
 
 
5
hooks="error_hooks/C*"
 
6
 
 
7
for h in $hooks
 
8
do
 
9
        $h
 
10
done
 
11