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
When trying to create a new user I got an error message saying " Cannot find module '../Error' " so had to manually change the path in lib/Command/User/Utils.js from
let Error = require('../Error')
to
let Error = require('../../Error')
The text was updated successfully, but these errors were encountered:
monkybrain
changed the title
Wrong path to 'Error' in lib/Command/Utils.js
Wrong path to 'Error' in lib/Command/User/Utils.js
Jan 28, 2016
When trying to create a new user I got an error message saying " Cannot find module '../Error' " so had to manually change the path in
lib/Command/User/Utils.js
fromlet Error = require('../Error')
to
let Error = require('../../Error')
The text was updated successfully, but these errors were encountered: