Skip to content

Commit

Permalink
Lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulAdamDavis committed Oct 3, 2023
1 parent f682e9e commit fc3c115
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/zip-split.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ const getFullTaskList = (options) => {
task: async (ctx) => {
// 6. Move each new zip to the desired destination path
try {
let filePaths = globSync(`${ctx.fileCache.zipDir}/*.zip`);
let filePaths = glob.globSync(`${ctx.fileCache.zipDir}/*.zip`);

await Promise.all(filePaths.map(async (filePath) => {
let fileName = basename(filePath);
Expand Down

0 comments on commit fc3c115

Please sign in to comment.