chore: update symbolic type

This commit is contained in:
Louis 2025-01-16 12:36:07 +07:00
parent 99388f4418
commit ae7a6c5d64
No known key found for this signature in database
GPG Key ID: 44FA9F4D33C37DE2
2 changed files with 14 additions and 10 deletions

View File

@ -140,8 +140,8 @@ const symlinkEngines = async () => {
recursive: true,
}).catch((error) => log(JSON.stringify(error)))
await symlink(targetVariantPath, symlinkVariantPath).catch((error) =>
log(JSON.stringify(error))
await symlink(targetVariantPath, symlinkVariantPath, 'junction').catch(
(error) => log(JSON.stringify(error))
)
console.log(`Symlink created: ${targetVariantPath} -> ${symlinkEnginePath}`)
}

View File

@ -1,5 +1,10 @@
import path from 'path'
import { appResourcePath, getJanDataFolderPath, log, SystemInformation } from '@janhq/core/node'
import {
appResourcePath,
getJanDataFolderPath,
log,
SystemInformation,
} from '@janhq/core/node'
import { ProcessWatchdog } from './watchdog'
import { readdir, symlink } from 'fs/promises'
@ -21,10 +26,7 @@ function run(systemInfo?: SystemInformation): Promise<any> {
await createEngineSymlinks(binPath)
const executablePath = path.join(binPath, binaryName)
const sharedPath = path.join(
appResourcePath(),
'shared'
)
const sharedPath = path.join(appResourcePath(), 'shared')
// Execute the binary
log(`[CORTEX]:: Spawn cortex at path: ${executablePath}`)
@ -72,7 +74,9 @@ async function createEngineSymlinks(binPath: string) {
if (sharedLibFile.endsWith('.dll') || sharedLibFile.endsWith('.so')) {
const targetDllPath = path.join(sharedPath, sharedLibFile)
const symlinkDllPath = path.join(binPath, sharedLibFile)
await symlink(targetDllPath, symlinkDllPath).catch(console.error)
await symlink(targetDllPath, symlinkDllPath, 'junction').catch(
console.error
)
console.log(`Symlink created: ${targetDllPath} -> ${symlinkDllPath}`)
}
}