mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-08 10:09:54 +00:00
Make directory creation code more compact
Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
This commit is contained in:
parent
c2ca135f82
commit
eda2fb9583
|
@ -42,10 +42,7 @@ def main():
|
|||
subprocess.check_call(['make', '-C', 'library', 'libmbedcrypto.a'])
|
||||
|
||||
psa_arch_tests_dir = 'psa-arch-tests'
|
||||
try:
|
||||
os.mkdir(psa_arch_tests_dir)
|
||||
except FileExistsError:
|
||||
pass
|
||||
os.makedirs(psa_arch_tests_dir, exist_ok=True)
|
||||
try:
|
||||
os.chdir(psa_arch_tests_dir)
|
||||
|
||||
|
|
Loading…
Reference in a new issue