1
0
Fork 0

updated CHANGELOG

This commit is contained in:
Jan Steemann 2014-01-21 13:38:32 +01:00
parent d10748155f
commit f6b872e01c
2 changed files with 16 additions and 1 deletions

View File

@ -1,3 +1,11 @@
v1.4.7 (XXXX-XX-XX)
-------------------
* issue #738: added __dirname, __filename pseudo-globals. Fixes #733. (@by pluma)
* mount all Foxx applications in system apps directory on startup
v1.4.6 (2014-01-20)
-------------------

View File

@ -171,8 +171,15 @@
var fs = require("fs");
var apps = fs.list(systemAppPath);
// make sure the aardvark app is always there
if (apps.indexOf("aardvark") === -1) {
apps.push("aardvark");
}
apps.forEach(function (appName) {
if (! fs.isDirectory(fs.join(systemAppPath, appName))) {
// for all unknown system apps: check that the directory actually exists
if (appName !== "aardvark" &&
! fs.isDirectory(fs.join(systemAppPath, appName))) {
return;
}