1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-01-31 02:00:45 +00:00

target.py: Fix incorrect parameter name

This commit is contained in:
Marc Bonnici 2020-07-21 17:16:04 +01:00 committed by setrofim
parent 1a02f77fdd
commit c0f26e536a

View File

@ -702,7 +702,7 @@ class Target(object):
# files # files
def makedirs(self, path): def makedirs(self, path):
self.execute('mkdir -p {}'.format(quote(folder))) self.execute('mkdir -p {}'.format(quote(path)))
def file_exists(self, filepath): def file_exists(self, filepath):
command = 'if [ -e {} ]; then echo 1; else echo 0; fi' command = 'if [ -e {} ]; then echo 1; else echo 0; fi'