corrected error message if st-flash not exist

This commit is contained in:
MaximZaitsev
2016-07-14 16:35:20 +03:00
parent a8e463bee7
commit d02e6ebd32
+1 -1
View File
@@ -44,7 +44,7 @@ handle["/loadBin"] = handlers.loadBin;
handle["/control"] = handlers.control;
handle["/other"] = handlers.other;
fs.access(exports.commandPrefix, fs.F_OK, function (error) {
fs.access(executeShell, fs.F_OK, function (error) {
if (!error) {
server.start(router.route, handle);
} else {