Skip to content

Commit

Permalink
Fix some linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
evansiroky committed Dec 29, 2023
1 parent 6b77cd6 commit 06a996e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1543,16 +1543,16 @@ function assembleAndZipInputData (callback) {
[
// downloads
cb => fs.cp(
downloadsDir,
path.join(tempInputFilesDir, 'downloads'),
{ recursive: true },
downloadsDir,
path.join(tempInputFilesDir, 'downloads'),
{ recursive: true },
cb
),
// cache
cb => fs.cp(
cacheDir,
path.join(tempInputFilesDir, 'cache'),
{ recursive: true },
cacheDir,
path.join(tempInputFilesDir, 'cache'),
{ recursive: true },
cb
),
// etc single files (assumes cwd is repo root)
Expand Down

0 comments on commit 06a996e

Please sign in to comment.