Mark Sibly 7 년 전
부모
커밋
44c85b3c05
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 2 2
      scripts/updatemods.bat
  2. 2 2
      scripts/updatemods.sh

+ 2 - 2
scripts/updatemods.bat

@@ -7,8 +7,8 @@ echo.
 echo ***** Updating modules *****
 echo.
 
-%mx2cc% makemods -config=release
+%mx2cc% makemods -config=release %*
 if %errorlevel% neq 0 exit /b %errorlevel%
 
-%mx2cc% makemods -config=debug
+%mx2cc% makemods -config=debug %*
 if %errorlevel% neq 0 exit /b %errorlevel%

+ 2 - 2
scripts/updatemods.sh

@@ -5,6 +5,6 @@ echo ""
 echo "***** Updating modules *****"
 echo ""
 
-$mx2cc makemods -config=release
+$mx2cc makemods -config=release %*
 
-$mx2cc makemods -config=debug
+$mx2cc makemods -config=debug %*