mirror of https://gitee.com/bigwinds/arangodb
Foxx disabling development mode creates non-deterministic service bundle
This commit is contained in:
parent
a1a9334b67
commit
2ba5ee87c2
|
@ -22,6 +22,7 @@ devel
|
|||
|
||||
* fixed issue #2613: Reduce log level when Foxx manager tries to self heal missing database
|
||||
|
||||
* fixed issue #2677: Foxx disabling development mode creates non-deterministic service bundle
|
||||
|
||||
v3.2.beta1 (2017-06-12)
|
||||
-----------------------
|
||||
|
|
|
@ -249,6 +249,9 @@ function zipDirectory (directory, zipFilename) {
|
|||
if (files.length === 0) {
|
||||
throwFileNotFound("Directory '" + String(directory) + "' is empty");
|
||||
}
|
||||
// sort files to be sure they are always in same order within the zip file
|
||||
// independent of the OS and file system
|
||||
files.sort();
|
||||
fs.zipFile(zipFilename, directory, files);
|
||||
return zipFilename;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue