From 46943906ce48064d3ea9390e625fe24b55852ed2 Mon Sep 17 00:00:00 2001 From: Joel Marcey Date: Tue, 12 Dec 2017 10:18:29 -0800 Subject: [PATCH] Fix Prettier --- lib/publish-gh-pages.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/publish-gh-pages.js b/lib/publish-gh-pages.js index 5bba6cf614..b02cbd7c76 100755 --- a/lib/publish-gh-pages.js +++ b/lib/publish-gh-pages.js @@ -120,7 +120,9 @@ excludePath = `${PROJECT_NAME}-${DEPLOYMENT_BRANCH}`; // https://github.com/shelljs/shelljs/issues/79 if ( shell.exec( - `rsync -rt --exclude=${excludePath} --exclude=.DS_Store ${fromPath} ${toPath}` + `rsync -rt --exclude=${excludePath} --exclude=.DS_Store ${fromPath} ${ + toPath + }` ).code !== 0 ) { shell.echo(`Error: Copying build assets failed`);