Merge pull request #82 from bmartin5692/fix-81
Create certs for arm or aarch w/ rpi
This commit is contained in:
commit
20e29a7a19
1 changed files with 1 additions and 1 deletions
|
|
@ -272,7 +272,7 @@ def create_certs():
|
|||
# run on mac
|
||||
subprocess.run([os.path.join("..", "create_certs", "create_certs_osx")])
|
||||
elif str(platform.system()).lower() == "linux":
|
||||
if "arm" in platform.machine().lower():
|
||||
if "arm" in platform.machine().lower() or "aarch64" in platform.machine().lower():
|
||||
# run for pi
|
||||
subprocess.run([os.path.join("..", "create_certs", "create_certs_rpi")])
|
||||
else:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue