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

Commit

Permalink
Load
Browse files Browse the repository at this point in the history
  • Loading branch information
vknabel committed Mar 10, 2021
1 parent 8d6d1a9 commit b82347f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sourcekites-server/packages/debug-yaml-package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const debugYamlPackage: Package = async (fromPath) => {
} catch (error) {
return [];
}
const debugYaml = yaml.safeLoad(debugContents) as DebugYaml;
const debugYaml = yaml.load(debugContents) as DebugYaml;
const targets: Target[] = [];
for (const name in debugYaml.commands) {
const command = debugYaml.commands[name];
Expand Down

0 comments on commit b82347f

Please sign in to comment.