diff --git a/Worker/src/Common/Archive/ZipArchiver.cs b/Worker/src/Common/Archive/ZipArchiver.cs index 7b188c49e..e6dc8d337 100644 --- a/Worker/src/Common/Archive/ZipArchiver.cs +++ b/Worker/src/Common/Archive/ZipArchiver.cs @@ -127,8 +127,8 @@ public string ExtractArchive(string filename, //Check now if the assembly is present if (!File.Exists(mainAssembly)) { - throw new WorkerApiException($"Fail to find assembly {mainAssembly}. Something went wrong during the extraction. " + - $"Please make sure that the folder tree inside the zip file is {packageId.ApplicationName}/{packageId.ApplicationVersion}/*.dll"); + throw new WorkerApiException($"Fail to find assembly {mainAssembly}. The extracted zip should have the following structure" + + $" {packageId.ApplicationName}/{packageId.ApplicationVersion}/ which will contains all the dll files."); } return pathToAssemblyDir;