path.split() no longer available
@ -740,8 +740,7 @@ Interface.prototype.printScripts = function(displayNatives) {
script.name == client.currentScript ||
!script.isNative) {
text += script.name == client.currentScript ? '* ' : ' ';
var n = require('path').split(script.name);
text += n[n.length - 1] + '\n';
text += script.name + '\n';
}