Skip to content

Commit 3c5fcac

Browse files
committed
Fix Download and Run broken by 06fefa7
Returning undefined broke the case where we already have a configuration defined in launch.json.
1 parent e7ac871 commit 3c5fcac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class Ev3devDebugConfigurationProvider implements vscode.DebugConfigurationProvi
119119
};
120120
}
121121
}
122-
return undefined;
122+
return debugConfiguration;
123123
}
124124
}
125125

0 commit comments

Comments
 (0)