Skip to content

Commit

Permalink
[setup] fix default filenames in frozen configuration
Browse files Browse the repository at this point in the history
* voctree: missing SIFT descriptor type
* missing "aliceVision" folder for AliceVision COPYING.md
  • Loading branch information
yann-lty committed Aug 9, 2018
1 parent 2361306 commit 1478015
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion meshroom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def addToEnvPath(var, val, index=-1):
aliceVisionShareDir = os.path.join(aliceVisionDir, "share", "aliceVision")
qtPluginsDir = os.path.join(rootDir, "qtPlugins")
sensorDBPath = os.path.join(aliceVisionShareDir, "cameraSensors.db")
voctreePath = os.path.join(aliceVisionShareDir, "vlfeat_K80L3.tree")
voctreePath = os.path.join(aliceVisionShareDir, "vlfeat_K80L3.SIFT.tree")

env = {
'PATH': aliceVisionBinDir,
Expand Down
2 changes: 1 addition & 1 deletion meshroom/ui/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def licensesModel(self):
},
{
"title": "AliceVision",
"localUrl": os.path.join(rootDir, "aliceVision", "share", "COPYING.md"),
"localUrl": os.path.join(rootDir, "aliceVision", "share", "aliceVision", "COPYING.md"),
"onlineUrl": "https://raw.githubusercontent.com/alicevision/AliceVision/develop/COPYING.md"
}
]

0 comments on commit 1478015

Please sign in to comment.