diff options
Diffstat (limited to 'build/extract_from_cab.py')
-rwxr-xr-x | build/extract_from_cab.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/build/extract_from_cab.py b/build/extract_from_cab.py index 9320462..2321d2f 100755 --- a/build/extract_from_cab.py +++ b/build/extract_from_cab.py @@ -21,7 +21,13 @@ def main(): level = subprocess.call( ['expand', cab_path, '-F:' + archived_file, output_dir]) if level != 0: - return level + print 'Cab extraction(%s, %s, %s) failed.' % ( + cab_path, archived_file, output_dir) + print 'Trying a second time.' + level = subprocess.call( + ['expand', cab_path, '-F:' + archived_file, output_dir]) + if level != 0: + return level # The expand utility preserves the modification date and time of the archived # file. Touch the extracted file. This helps build systems that compare the |