macos SQLite lib

This commit is contained in:
Natsumi
2025-02-05 06:07:02 +13:00
parent 612c5f115b
commit c15e694d5b
5 changed files with 6 additions and 2 deletions

View File

@@ -504,6 +504,10 @@ function getVersion() {
}
function isDotNetInstalled() {
if (process.platform === 'darwin') {
// Assume .NET is already installed on macOS
return true;
}
const result = require('child_process').spawnSync(
'dotnet',
['--list-runtimes'],