소스 검색

.geninfo only saved if changed.

Mark Sibly 7 년 전
부모
커밋
1f55f8a613
2개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      src/mx2cc/.mx2/test.monkey2
  2. 2 1
      src/mx2cc/geninfo/geninfo.monkey2

+ 1 - 1
src/mx2cc/.mx2/test.monkey2

@@ -5,7 +5,7 @@
 
 Using std..
 
-Function Test:Int()
+Function Testing:Int()
 	
 	Return 0
 End

+ 2 - 1
src/mx2cc/geninfo/geninfo.monkey2

@@ -23,7 +23,8 @@ Class GeninfoGenerator
 			Local json:=jobj.ToJson()
 			
 			CreateDir( ExtractDir( fdecl.gpath ) )
-			SaveString( json,fdecl.gpath )
+			
+			CSaveString( json,fdecl.gpath )
 		Next
 		
 	End