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:
parent
1a02f77fdd
commit
c0f26e536a
@ -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'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user