commitmsg

Add binaryPath to DtmWrapper class

- Initialize binaryPath with default value 'dtm'
- This change is in src/toolwrapper/dtm.ts
This commit is contained in:
bobo.yang 2023-05-09 18:12:10 +08:00
parent ed2f645eb4
commit 9b51d3e24b

View File

@ -16,6 +16,7 @@ class DtmWrapper {
constructor() {
this.workspaceDir = vscode.workspace.workspaceFolders?.[0].uri.fsPath || '.';
this.binaryPath = 'dtm';
let binaryName: string;
switch (process.platform) {