Last active
April 28, 2020 17:31
-
-
Save andr-ggn/1a892d04424d8137dad2e9c404285667 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal | |
set GRADLEPATH=%~dp0 | |
set GRADLE_CMD_LINE_ARGS= | |
:setupArgs | |
if ""%1""=="""" goto doneStart | |
set GRADLE_CMD_LINE_ARGS=%GRADLE_CMD_LINE_ARGS% %1 | |
call "%GRADLEPATH%\gradlew.bat" :app:assembleRelease -Dfile.encoding=UTF-8 | |
shift | |
goto setupArgs | |
:doneStart | |
subst Z: "%CD%" | |
pushd Z: | |
call "%GRADLEPATH%\gradlew.bat" :app:assembleRelease -Dfile.encoding=UTF-8 | |
set GRADLEERROR=%ERRORLEVEL% | |
popd | |
subst Z: /d | |
exit /b %GRADLEERROR% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment