Skip to content

Commit 945535a

Browse files
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.
1 parent d948a1f commit 945535a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/ESP8266WiFi/examples/BearSSL_CertStore/certs-from-mozilla.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
if os.path.exists("data/certs.ar"):
6060
os.unlink("data/certs.ar");
6161

62-
arCmd = ['ar', 'mcs', 'data/certs.ar'] + derFiles;
62+
arCmd = ['ar', 'q', 'data/certs.ar'] + derFiles;
6363
call( arCmd )
6464

6565
for der in derFiles:

0 commit comments

Comments
 (0)