You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
val resolvedPath = outputDir.resolve(pathSpec).normalize()
val realPath =if (resolvedPath.exists()) resolvedPath.toRealPath() else resolvedPath
if (!realPath.startsWith(outputDir)) {
throwCliException(
"Output file conflict: `output.files` entry `\"$pathSpec\"` in module `$moduleUri` resolves to file path `$realPath`, which is outside output directory `$outputDir`."
)
}
The text was updated successfully, but these errors were encountered:
Using a regular output directory:
birds.pkl
has the same content as the example in the documentation.Using a symlink:
macOS symlinks
/var
to/private/var
.The related code path is the following:
pkl/pkl-cli/src/main/kotlin/org/pkl/cli/CliEvaluator.kt
Lines 221 to 227 in 8e15556
The text was updated successfully, but these errors were encountered: