I'm running this code in swift with the perfect template framework using Swift Package Mannager
var values: MustacheEvaluationContext.MapType
func extendValuesForResponse(context contxt: MustacheWebEvaluationContext, collector: MustacheEvaluationOutputCollector) {
contxt.extendValues(with: values)
do {
try contxt.requestCompleted(withCollector: collector)
} catch {
let response = contxt.webResponse
response.appendBody(string: "\(error)")
.completed(status: .internalServerError)
}
}
and get this error: fileError(2, "No such file or directory /home/ubuntu/PerfectTemplate/.build/checkouts/PerfectLib.git--5188670293928734099/Sources/PerfectLib/File.swift open(_:permissions:) 246")