From 2832092e2c04d57d64a033f266936aa33431706d Mon Sep 17 00:00:00 2001 From: Alex Young Date: Tue, 3 Dec 2019 23:15:59 -0500 Subject: [PATCH] fix(fix-script): format build phase command like Xcode --- src/fix-script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fix-script.js b/src/fix-script.js index 72f9858..271354b 100644 --- a/src/fix-script.js +++ b/src/fix-script.js @@ -36,7 +36,7 @@ function updateProject (project) { runCommand, ]; - const newScript = `"${commands.join('\\n')}"`; + const newScript = `"${commands.join('\\n')}\n"`; if (step.shellScript === newScript) { // It's already up to date.