We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87c4562 commit e2ae975Copy full SHA for e2ae975
Sources/LispKitTools/LispKitRepl.swift
@@ -212,7 +212,7 @@ open class LispKitRepl {
212
}
213
214
// Set up remaining file paths
215
- return self.setupRootPaths() &&
+ return self.setupRootPaths(includeInternalResources: includeInternalResources) &&
216
self.setupPaths() &&
217
self.bootstrapContext() &&
218
self.importLibraries(initialLibraries) &&
@@ -232,7 +232,7 @@ open class LispKitRepl {
232
return true
233
234
235
- open func setupRootPaths() -> Bool {
+ open func setupRootPaths(includeInternalResources: Bool) -> Bool {
236
for root in self.roots.value {
237
guard self.setupBinaryBundle(root: URL(fileURLWithPath: root, isDirectory: true)) else {
238
return false
0 commit comments