소스 검색

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