| Index: chrome/tools/build/win/create_installer_archive.py
|
| diff --git a/chrome/tools/build/win/create_installer_archive.py b/chrome/tools/build/win/create_installer_archive.py
|
| index 0b73a366c5fb1eb00662c25fabaec49f99d8b666..c2b7cda3507f9f70118c5b48ae38a782da76c596 100755
|
| --- a/chrome/tools/build/win/create_installer_archive.py
|
| +++ b/chrome/tools/build/win/create_installer_archive.py
|
| @@ -86,8 +86,8 @@ def CompressUsingLZMA(build_dir, compressed_file, input_file, verbose):
|
| '-mb0:1',
|
| '-mb0s1:2',
|
| '-mb0s2:3',
|
| - compressed_file,
|
| - input_file,]
|
| + os.path.abspath(compressed_file),
|
| + os.path.abspath(input_file),]
|
| if os.path.exists(compressed_file):
|
| os.remove(compressed_file)
|
| RunSystemCommand(cmd, verbose)
|
|
|