source: audit_all_data.py @ 5066

Last change on this file since 5066 was 5055, checked in by ole, 16 years ago

Cleanup

File size: 666 bytes
Line 
1from anuga.utilities.data_audit_wrapper import IP_verified
2from os.path import join
3
4
5# Roughly the same as what is being released
6dirs_to_distribute = [join('anuga_core', 'source', 'anuga'),
7                      'anuga_validation',
8                      join('anuga_core', 'documentation', 'user_manual')]
9
10# Individual segments
11#dirs_to_distribute = ['anuga_validation']
12#dirs_to_distribute = [join('anuga_core', 'documentation', 'user_manual')]
13#dirs_to_distribute = [join('anuga_core', 'source', 'anuga')]
14
15
16
17for dir in dirs_to_distribute:
18    if not IP_verified(dir, verbose=True):
19        pass
20        #print 'Not all files in %s have been verified.' %dir
21
22
23
Note: See TracBrowser for help on using the repository browser.