فهرست منبع

Convert.hx CompressIMG check for file renaming if compress failed. Will throw on converted file not found.

clementlandrin 11 ماه پیش
والد
کامیت
cfe54b5539
1فایلهای تغییر یافته به همراه3 افزوده شده و 1 حذف شده
  1. 3 1
      hxd/fs/Convert.hx

+ 3 - 1
hxd/fs/Convert.hx

@@ -309,7 +309,9 @@ class CompressIMG extends Convert {
 			command("texconv", args);
 			sys.FileSystem.deleteFile(tmpFile);
 			tmpPath.ext = "tmp.DDS";
-			sys.FileSystem.rename(tmpPath.toString(), dstPath);
+			var p = tmpPath.toString();
+			if ( sys.FileSystem.exists(p) )
+				sys.FileSystem.rename(p, dstPath);
 			return;
 		}
 		var path = new haxe.io.Path(srcPath);