We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c4db95 commit fe1fa9dCopy full SHA for fe1fa9d
Sources/LispKitTools/LispKitRepl.swift
@@ -231,7 +231,8 @@ open class LispKitRepl {
231
232
open func setupBinaryBundle(root: URL) -> Bool {
233
_ = self.context?.fileHandler.prependSearchPath(root.path)
234
- _ = self.context?.fileHandler.prependAssetSearchPath(root.path)
+ _ = self.context?.fileHandler.prependAssetSearchPath(root
235
+ .appendingPathComponent("Assets", isDirectory: true).path)
236
_ = self.context?.fileHandler.prependLibrarySearchPath(root
237
.appendingPathComponent("Libraries", isDirectory: true).path)
238
if !self.prelude.wasSet {
0 commit comments