Skip to content

Commit

Permalink
Fix Deploy Error for Apps that Contain Spaces in Path (#10402)
Browse files Browse the repository at this point in the history
* Fix Deploy Bug for App Paths Containing Spaces

* Change files

* Remove Unneeded

* Simplify Syntax
  • Loading branch information
chiaramooney committed Aug 18, 2022
1 parent e7075a9 commit 8582d04
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "Fix Deploy Bug for App Paths Containing Spaces",
"packageName": "@react-native-windows/cli",
"email": "34109996+chiaramooney@users.noreply.github.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ function getWindowsStoreAppUtils(options: RunWindowsOptions) {
'WindowsStoreAppUtils.ps1',
);
execSync(
`${powershell} -NoProfile Unblock-File "${windowsStoreAppUtilsPath}"`,
`${powershell} -NoProfile Unblock-File '${windowsStoreAppUtilsPath}'`,
);
popd();
return windowsStoreAppUtilsPath;
Expand Down

0 comments on commit 8582d04

Please sign in to comment.