mirror of
https://github.com/apple/pkl.git
synced 2026-03-24 10:01:10 +01:00
Fix spelling errors (#846)
Also: change checksums due to filename and content changes, and fix language snippet test output to produce correct error messages
This commit is contained in:
@@ -74,7 +74,7 @@ val prepareHistoricalDistributions by
|
||||
val distributionDir = outputDir.get().asFile.toPath().also(Files::createDirectories)
|
||||
for (file in pklHistoricalDistributions.files) {
|
||||
val target = distributionDir.resolve(file.name)
|
||||
// Create normal files on Windows, symlink on macOS/linux (need admin priveleges to create
|
||||
// Create normal files on Windows, symlink on macOS/linux (need admin privileges to create
|
||||
// symlinks on Windows)
|
||||
if (buildInfo.os.isWindows) {
|
||||
if (!Files.isRegularFile(target, LinkOption.NOFOLLOW_LINKS)) {
|
||||
|
||||
@@ -267,7 +267,7 @@ final class EmbeddedExecutor implements Executor {
|
||||
if (clazz == null) {
|
||||
if (name.startsWith("org.pkl.executor.spi.")) {
|
||||
try {
|
||||
// give pkl-executor a chance to load the SPI clasa
|
||||
// give pkl-executor a chance to load the SPI class
|
||||
clazz = pklExecutorClassLoader.loadClass(name);
|
||||
} catch (ClassNotFoundException ignored) {
|
||||
// The SPI class exists in this distribution but not in pkl-executor,
|
||||
|
||||
Reference in New Issue
Block a user