Skip to content

Commit bb24a8b

Browse files
author
Ilya Radchenko
committed
Fix missing param for updateCache
Was causing ```no-highlight TypeError: undefined is not a function at /var/www/myproject/node_modules/strider-bower/lib/update-cache.js:13:14 at /var/www/myproject/node_modules/strider-bower/lib/bower-hash.js:10:14 at fs.js:207:20 at Object.oncomplete (fs.js:107:15) ```
1 parent 1d4be4c commit bb24a8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

worker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ module.exports = {
4444
return done(err);
4545
}
4646

47-
updateCache(context, done);
47+
updateCache(context, bowerDirectory, done);
4848
});
4949
});
5050
}

0 commit comments

Comments
 (0)