mirror of https://gitee.com/bigwinds/arangodb
updated CHANGELOG
This commit is contained in:
parent
d10748155f
commit
f6b872e01c
|
@ -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)
|
||||
-------------------
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue