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}`));