fix. был баг в пути запаковки пакета при скачивании

This commit is contained in:
2023-10-26 20:46:03 +03:00
parent b309745e35
commit cd439030e8
7 changed files with 24 additions and 8 deletions

View File

@@ -4,6 +4,6 @@ import Common.Global;
import java.io.File;
public class SapforTasksPackageInterface {
public static File getPackageArchive(SapforTasksPackage package_in){
return new File(Global.SapforPackagesDirectory, package_in.workspace+".zip");
return new File(Global.SapforPackagesDirectory, package_in.id+".zip");
}
}

View File

@@ -0,0 +1,3 @@
package SapforTestingSystem.SapforTasksPackage;
public class SapforTasksPackageTree {
}