return asset paths for all filenames

fixes https://github.com/OpenDroneMap/NodeODM/issues/167
pull/168/head
Nathan Rashleigh 2021-09-22 16:28:26 +10:00 zatwierdzone przez GitHub
rodzic 994d049074
commit 02149a2675
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 7 usunięć

Wyświetl plik

@ -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);
}