Mark Sibly 7 years ago
parent
commit
44c85b3c05
2 changed files with 4 additions and 4 deletions
  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 ***** Updating modules *****
 echo.
 echo.
 
 
-%mx2cc% makemods -config=release
+%mx2cc% makemods -config=release %*
 if %errorlevel% neq 0 exit /b %errorlevel%
 if %errorlevel% neq 0 exit /b %errorlevel%
 
 
-%mx2cc% makemods -config=debug
+%mx2cc% makemods -config=debug %*
 if %errorlevel% neq 0 exit /b %errorlevel%
 if %errorlevel% neq 0 exit /b %errorlevel%

+ 2 - 2
scripts/updatemods.sh

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