From 945535ae78cad0586e5539f01335ff6bd3e6695f Mon Sep 17 00:00:00 2001 From: "Earle F. Philhower, III" Date: Sun, 8 Jul 2018 21:12:32 -0700 Subject: [PATCH] Make ar compatible with GNU and BSD in example (#4907) Change the "ar" options in the example CertStore.AR archive generator to make them compatible with both Linux and MacOS. --- .../examples/BearSSL_CertStore/certs-from-mozilla.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/ESP8266WiFi/examples/BearSSL_CertStore/certs-from-mozilla.py b/libraries/ESP8266WiFi/examples/BearSSL_CertStore/certs-from-mozilla.py index 15780ba73..049df11a2 100755 --- a/libraries/ESP8266WiFi/examples/BearSSL_CertStore/certs-from-mozilla.py +++ b/libraries/ESP8266WiFi/examples/BearSSL_CertStore/certs-from-mozilla.py @@ -59,7 +59,7 @@ for i in range(0, len(pems)): if os.path.exists("data/certs.ar"): os.unlink("data/certs.ar"); -arCmd = ['ar', 'mcs', 'data/certs.ar'] + derFiles; +arCmd = ['ar', 'q', 'data/certs.ar'] + derFiles; call( arCmd ) for der in derFiles: