Create certs for arm or aarch w/ rpi #82

Merged
bmartin5692 merged 1 commit from fix-81 into master 2020-01-01 06:51:30 +01:00

View file

@ -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: