Skip to content
This repository was archived by the owner on Jun 22, 2024. It is now read-only.

Commit b82347f

Browse files
committed
Load
1 parent 8d6d1a9 commit b82347f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sourcekites-server/packages/debug-yaml-package.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const debugYamlPackage: Package = async (fromPath) => {
3030
} catch (error) {
3131
return [];
3232
}
33-
const debugYaml = yaml.safeLoad(debugContents) as DebugYaml;
33+
const debugYaml = yaml.load(debugContents) as DebugYaml;
3434
const targets: Target[] = [];
3535
for (const name in debugYaml.commands) {
3636
const command = debugYaml.commands[name];

0 commit comments

Comments
 (0)