From b82347f699302e211fc17f824098946a460a2e95 Mon Sep 17 00:00:00 2001 From: Valentin Knabel Date: Wed, 10 Mar 2021 21:25:51 +0100 Subject: [PATCH] Load --- src/sourcekites-server/packages/debug-yaml-package.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sourcekites-server/packages/debug-yaml-package.ts b/src/sourcekites-server/packages/debug-yaml-package.ts index 247cc08..35966c5 100644 --- a/src/sourcekites-server/packages/debug-yaml-package.ts +++ b/src/sourcekites-server/packages/debug-yaml-package.ts @@ -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];