diff --git a/build/cp.py b/build/cp.py index 4b160ba3c9c37..c7e9beccdf805 100755 --- a/build/cp.py +++ b/build/cp.py @@ -17,7 +17,8 @@ def Main(src, dst): # Use copy instead of copyfile to ensure the executable bit is copied. - return shutil.copy(src, os.path.normpath(dst)) + shutil.copy(src, os.path.normpath(dst)) + return 0 if __name__ == '__main__':