void CreatePackage(string temporaryPackageDir, string outputFileName)
 {
     if (!Zipper.TryCreateTgz(temporaryPackageDir, outputFileName))
     {
         UnityEngine.Profiling.Profiler.EndSample();
         throw new Exception("Failed creating .unitypackage " + outputFileName);
     }
 }