]> git.pld-linux.org Git - projects/pld-builder.new.git/blame - PLD_Builder/cleaner.py
- initial version (not doing much) of a script for cleaning up stuff after
[projects/pld-builder.new.git] / PLD_Builder / cleaner.py
CommitLineData
074b4414
MM
1# vi: encoding=utf-8 ts=8 sts=4 sw=4 et
2
3from config import config, init_conf
4
5def handle_src():
6 print config.arch
7
8def handle_bin():
9 print config.arch
10
11if __name__ == '__main__':
12 init_conf()
13 bb=config.binary_builders[:]
14 if config.src_builder:
15 try:
16 init_conf(config.src_builder)
17 except:
18 pass
19 else:
20 handle_src()
21 for b in bb:
22 try:
23 init_conf(b)
24 except:
25 continue
26 else:
27 handle_bin()
28
This page took 0.038732 seconds and 4 git commands to generate.