mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-07-10 09:03:36 +01:00
framework/getters: Fix missing return in Filer Getter
This commit is contained in:
@ -363,3 +363,4 @@ class Filer(ResourceGetter):
|
|||||||
local_full_path = os.path.join(_d(local_path), os.path.basename(result))
|
local_full_path = os.path.join(_d(local_path), os.path.basename(result))
|
||||||
self.logger.debug('cp {} {}'.format(result, local_full_path))
|
self.logger.debug('cp {} {}'.format(result, local_full_path))
|
||||||
shutil.copy(result, local_full_path)
|
shutil.copy(result, local_full_path)
|
||||||
|
return result
|
||||||
|
Reference in New Issue
Block a user