From 02149a267577e6811df702fafc33c2a0047cf7ab Mon Sep 17 00:00:00 2001 From: Nathan Rashleigh Date: Wed, 22 Sep 2021 16:28:26 +1000 Subject: [PATCH] return asset paths for all filenames fixes https://github.com/OpenDroneMap/NodeODM/issues/167 --- libs/Task.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/libs/Task.js b/libs/Task.js index f0cc4b9..1922751 100644 --- a/libs/Task.js +++ b/libs/Task.js @@ -200,13 +200,7 @@ module.exports = class Task{ // Get the path of the archive where all assets // outputted by this task are stored. - getAssetsArchivePath(filename){ - if (filename == 'all.zip'){ - // OK, do nothing - }else{ - return false; // Invalid - } - + getAssetsArchivePath(filename){ return path.join(this.getProjectFolderPath(), filename); }