Command execution exception error message added.

git-svn-id: https://beef.googlecode.com/svn/trunk@684 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
wade@bindshell.net
2011-01-09 20:00:31 +00:00
parent 19561b5002
commit 701f8d8f2d

View File

@@ -87,7 +87,9 @@ beef.updater = {
command = beef.commands.pop();
try {
command();
} catch(e) {}
} catch(e) {
console.error('execute_commands - command failed to execute: ' + e.message);
}
}
this.lock = false;