Prettier fix

This commit is contained in:
Joel Marcey 2017-12-12 08:54:44 -08:00
parent b3c44060b9
commit ae872e7ee9

View file

@ -119,7 +119,9 @@ excludePath = `${PROJECT_NAME}-${DEPLOYMENT_BRANCH}`;
// need to copy directories like .circleci, for example // need to copy directories like .circleci, for example
// https://github.com/shelljs/shelljs/issues/79 // https://github.com/shelljs/shelljs/issues/79
shell.exec( 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}`)); shell.cd(path.join('build', `${PROJECT_NAME}-${DEPLOYMENT_BRANCH}`));