From ae872e7ee9e2876235f332e25e49a3835154e244 Mon Sep 17 00:00:00 2001 From: Joel Marcey Date: Tue, 12 Dec 2017 08:54:44 -0800 Subject: [PATCH] Prettier fix --- 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 cb7b251d6e..7b2f6ba162 100755 --- a/lib/publish-gh-pages.js +++ b/lib/publish-gh-pages.js @@ -119,7 +119,9 @@ excludePath = `${PROJECT_NAME}-${DEPLOYMENT_BRANCH}`; // need to copy directories like .circleci, for example // https://github.com/shelljs/shelljs/issues/79 shell.exec( - `rsync -rtv --exclude=${excludePath} --exclude=.DS_Store ${fromPath} ${toPath}` + `rsync -rtv --exclude=${excludePath} --exclude=.DS_Store ${fromPath} ${ + toPath + }` ); shell.cd(path.join('build', `${PROJECT_NAME}-${DEPLOYMENT_BRANCH}`));