Skip to content

Commit e2ae975

Browse files
committed
Extend read-eval-print framework.
1 parent 87c4562 commit e2ae975

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/LispKitTools/LispKitRepl.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ open class LispKitRepl {
212212
}
213213
}
214214
// Set up remaining file paths
215-
return self.setupRootPaths() &&
215+
return self.setupRootPaths(includeInternalResources: includeInternalResources) &&
216216
self.setupPaths() &&
217217
self.bootstrapContext() &&
218218
self.importLibraries(initialLibraries) &&
@@ -232,7 +232,7 @@ open class LispKitRepl {
232232
return true
233233
}
234234

235-
open func setupRootPaths() -> Bool {
235+
open func setupRootPaths(includeInternalResources: Bool) -> Bool {
236236
for root in self.roots.value {
237237
guard self.setupBinaryBundle(root: URL(fileURLWithPath: root, isDirectory: true)) else {
238238
return false

0 commit comments

Comments
 (0)