## 1.6.4
This commit is contained in:
@ -145,3 +145,8 @@ None
|
|||||||
|
|
||||||
- Updated File-Folder-Helper 47e6b85c218f994216fb35d44906850a790c36d0
|
- Updated File-Folder-Helper 47e6b85c218f994216fb35d44906850a790c36d0
|
||||||
- Open with Text Editor Kanban
|
- Open with Text Editor Kanban
|
||||||
|
|
||||||
|
## 1.6.4 Fri Aug 02 2024 13:07:24 GMT-0700 (Mountain Standard Time)
|
||||||
|
-----------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
- Wrap directory in quotes
|
||||||
|
@ -259,5 +259,5 @@
|
|||||||
"webpack": "webpack --config ./build/node-extension.webpack.config.js",
|
"webpack": "webpack --config ./build/node-extension.webpack.config.js",
|
||||||
"watch": "concurrently \"rollup -c -w\" \"webpack --watch --config ./build/node-extension.webpack.config.js\""
|
"watch": "concurrently \"rollup -c -w\" \"webpack --watch --config ./build/node-extension.webpack.config.js\""
|
||||||
},
|
},
|
||||||
"version": "1.6.2"
|
"version": "1.6.4"
|
||||||
}
|
}
|
||||||
|
@ -46,7 +46,7 @@ async function postColumnsToCards(extensionUri: vscode.Uri, webviewView: vscode.
|
|||||||
const workspaceFoldersZero = vscode.workspace.workspaceFolders[0].uri;
|
const workspaceFoldersZero = vscode.workspace.workspaceFolders[0].uri;
|
||||||
const destination: vscode.Uri = vscode.Uri.joinPath(workspaceFoldersZero, ".vscode", "helper");
|
const destination: vscode.Uri = vscode.Uri.joinPath(workspaceFoldersZero, ".vscode", "helper");
|
||||||
const fileFolderHelper: vscode.Uri = vscode.Uri.joinPath(extensionUri, "net8.0", "win-x64", "publish", "File-Folder-Helper.exe");
|
const fileFolderHelper: vscode.Uri = vscode.Uri.joinPath(extensionUri, "net8.0", "win-x64", "publish", "File-Folder-Helper.exe");
|
||||||
const command: string = `${fileFolderHelper.fsPath} s M ${workspaceFoldersZero.fsPath} -s ${workspaceFoldersZero.fsPath} -d ${destination.fsPath}`;
|
const command: string = `${fileFolderHelper.fsPath} s M "${workspaceFoldersZero.fsPath}" -d "${destination.fsPath}"`;
|
||||||
exec(command, (error, stdout, stderr) =>
|
exec(command, (error, stdout, stderr) =>
|
||||||
execCallback(webviewView, destination, error, stdout, stderr));
|
execCallback(webviewView, destination, error, stdout, stderr));
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user