Steve Byrnes

Results 1 issues of Steve Byrnes

in auth.js: If the TOKEN_DIR exists, the error will always be thrown and the token will never be stored. ``` function storeToken(token) { try { fs.mkdirSync(TOKEN_DIR); fs.writeFileSync(TOKEN_PATH, JSON.stringify(token)); } catch...