You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seems hard to mess up instructions this simple. Heres the error I receive.
administrator@PINGU:~$ npx trakt-to-letterboxd -u <USERNAME> -f test.csv
npm ERR! cb.apply is not a function
npm ERR! A complete log of this run can be found in:
npm ERR! /home/administrator/.npm/_logs/2023-11-06T01_18_25_708Z-debug.log
Install for [ 'trakt-to-letterboxd@latest' ] failed with code 1
The text was updated successfully, but these errors were encountered:
Having the same problem. Had a clean server with fresh installed npm and npx.
The function in graceful-fs that triggers this error is following:
function statFix (orig) {
if (!orig) return orig
// Older versions of Node erroneously returned signed integers for
// uid + gid.
return function (target, cb) {
return orig.call(fs, target, function (er, stats) {
if (!stats) return cb.apply(this, arguments)
if (stats.uid < 0) stats.uid += 0x100000000
if (stats.gid < 0) stats.gid += 0x100000000
if (cb) cb.apply(this, arguments)
})
}
Seems hard to mess up instructions this simple. Heres the error I receive.
The text was updated successfully, but these errors were encountered: