Define runfiles_path before try so that finally can use it.
Otherwise, python will complain the variable has not been initialized, in case ExtractRunFiles throws an exception. Test: m Change-Id: I3d9e3cda5e558436ee4182c44e4345151c031e41
This commit is contained in:
@@ -41,6 +41,7 @@ def Main():
|
|||||||
args = sys.argv[1:]
|
args = sys.argv[1:]
|
||||||
|
|
||||||
new_env = {}
|
new_env = {}
|
||||||
|
runfiles_path = None
|
||||||
|
|
||||||
try:
|
try:
|
||||||
runfiles_path = ExtractRunfiles()
|
runfiles_path = ExtractRunfiles()
|
||||||
@@ -82,7 +83,8 @@ def Main():
|
|||||||
except:
|
except:
|
||||||
raise
|
raise
|
||||||
finally:
|
finally:
|
||||||
shutil.rmtree(runfiles_path, True)
|
if runfiles_path is not None:
|
||||||
|
shutil.rmtree(runfiles_path, True)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
Main()
|
Main()
|
||||||
|
Reference in New Issue
Block a user