diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2022-12-29 23:50:22 -0500 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2022-12-29 23:50:22 -0500 |
commit | f49d5014aba8dbc5e04c3ec60353c3b7958687ac (patch) | |
tree | 249d0a86b7439a66401b332186bc0dfd3e260035 /src/lpm.lua | |
parent | e2bb76d7a96b4f3639413e6899c06007019c56f3 (diff) | |
download | lite-xl-plugin-manager-f49d5014aba8dbc5e04c3ec60353c3b7958687ac.tar.gz lite-xl-plugin-manager-f49d5014aba8dbc5e04c3ec60353c3b7958687ac.zip |
Began process of integrating keychain queries for mac into lpm.
Diffstat (limited to 'src/lpm.lua')
-rw-r--r-- | src/lpm.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lpm.lua b/src/lpm.lua index a7f0401..f6bf3cf 100644 --- a/src/lpm.lua +++ b/src/lpm.lua @@ -1670,7 +1670,7 @@ in any circumstance unless explicitly supplied. "/etc/openssl/certs", -- NetBSD "/var/ssl/certs", -- AIX } - if PLATFORM == "windows" then + if PLATFORM == "windows" or PLATFORM == "darwin" then common.mkdirp(TMPDIR) system.certs("system", TMPDIR .. PATHSEP .. "certs.crt") else |