Small tweaks

This commit is contained in:
Michael Jackson 2018-05-17 15:22:13 -07:00
parent 625e36ec5b
commit e3091c6fe5
1 changed files with 3 additions and 3 deletions

View File

@ -53,12 +53,12 @@ function fetchAndExtract(tarballURL, outputDir) {
const fetchMutex = createMutex((payload, callback) => { const fetchMutex = createMutex((payload, callback) => {
const { tarballURL, outputDir } = payload; const { tarballURL, outputDir } = payload;
fs.access(outputDir, function(error) { fs.access(outputDir, error => {
if (error) { if (error) {
if (error.code === "ENOENT" || error.code === "ENOTDIR") { if (error.code === "ENOENT" || error.code === "ENOTDIR") {
// ENOENT or ENOTDIR are to be expected when we haven't yet // ENOENT or ENOTDIR are to be expected when we haven't yet
// fetched a package for the first time. Carry on! // fetched a package for the first time. Carry on!
mkdirp(outputDir, function(error) { mkdirp(outputDir, error => {
if (error) { if (error) {
callback(error); callback(error);
} else { } else {
@ -81,7 +81,7 @@ function getPackage(packageConfig, callback) {
const tarballURL = packageConfig.dist.tarball; const tarballURL = packageConfig.dist.tarball;
const outputDir = createTempPath(packageConfig.name, packageConfig.version); const outputDir = createTempPath(packageConfig.name, packageConfig.version);
fetchMutex(tarballURL, { tarballURL, outputDir }, function(error) { fetchMutex(tarballURL, { tarballURL, outputDir }, error => {
callback(error, outputDir); callback(error, outputDir);
}); });
} }