Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,10 @@ class Dalai {

let engine = this.cores[core]

if (!engine) {
throw new Error(`Unable to find engine for core: ${core}`)
}

const venv_path = path.join(this.home, "venv")
let ve = await exists(venv_path)
if (!ve) {
Expand Down