diff --git a/type-script-helper/README.md b/type-script-helper/README.md index 466913c..f60c44d 100644 --- a/type-script-helper/README.md +++ b/type-script-helper/README.md @@ -145,3 +145,8 @@ None - Updated File-Folder-Helper 47e6b85c218f994216fb35d44906850a790c36d0 - Open with Text Editor Kanban + +## 1.6.4 Fri Aug 02 2024 13:07:24 GMT-0700 (Mountain Standard Time) +----------------------------------------------------------------------------------------------------------- + +- Wrap directory in quotes diff --git a/type-script-helper/package.json b/type-script-helper/package.json index dfc2637..6ae07ca 100644 --- a/type-script-helper/package.json +++ b/type-script-helper/package.json @@ -259,5 +259,5 @@ "webpack": "webpack --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" } diff --git a/type-script-helper/src/ColumnsToCardsWebviewViewProvider.ts b/type-script-helper/src/ColumnsToCardsWebviewViewProvider.ts index 100e7bf..393133e 100644 --- a/type-script-helper/src/ColumnsToCardsWebviewViewProvider.ts +++ b/type-script-helper/src/ColumnsToCardsWebviewViewProvider.ts @@ -46,7 +46,7 @@ async function postColumnsToCards(extensionUri: vscode.Uri, webviewView: vscode. const workspaceFoldersZero = vscode.workspace.workspaceFolders[0].uri; 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 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) => execCallback(webviewView, destination, error, stdout, stderr)); }