From cf0185e8e27a1045d35585a8ebb12471152c7d29 Mon Sep 17 00:00:00 2001 From: "Earle F. Philhower, III" Date: Sun, 8 Jul 2018 20:40:21 -0700 Subject: [PATCH] Make ar compatible with GNU and BSD in example 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 15780ba73e..049df11a28 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 @@ 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: