From 96c1975835905ad5e8a7e74ede0e309a2d0fb1d5 Mon Sep 17 00:00:00 2001 From: Sergi Mansilla Date: Thu, 17 Dec 2020 14:35:23 +0100 Subject: [PATCH 1/2] Enclose the app path in quotes, so that the `open` command doesn't split it if it contains spaces --- local-cli/runMacOS/runMacOS.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local-cli/runMacOS/runMacOS.js b/local-cli/runMacOS/runMacOS.js index 88504f6bedfa0b..95b72de73c8e53 100644 --- a/local-cli/runMacOS/runMacOS.js +++ b/local-cli/runMacOS/runMacOS.js @@ -87,7 +87,7 @@ async function run(xcodeProject, scheme, args) { ); child_process.exec( - 'open -b ' + bundleID + ' -a ' + appPath, + 'open -b ' + bundleID + ' -a ' + '"' + appPath + '"', (error, stdout, stderr) => { if (error) { logger.error('Failed to launch the app', stderr); From d3c119f51b304a72ed62d4be1920cae26a12087f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eloy=20Dur=C3=A1n?= Date: Fri, 18 Dec 2020 17:19:22 +0100 Subject: [PATCH 2/2] [ado] Remove no longer needed homebrew fix --- .ado/templates/apple-node-setup.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.ado/templates/apple-node-setup.yml b/.ado/templates/apple-node-setup.yml index b892f2c586ed2a..9d3f4ecb1c3e76 100644 --- a/.ado/templates/apple-node-setup.yml +++ b/.ado/templates/apple-node-setup.yml @@ -2,9 +2,6 @@ # Task Group: Brew install node version # steps: - - script: 'brew uninstall openssl@1.0.2t && rm -rf /usr/local/etc/openssl && rm -rf /usr/local/etc/openssl@1.1' - displayName: Fix Homebrew - - script: 'brew bundle' displayName: 'brew bundle'