Created
April 28, 2020 17:35
-
-
Save andr-ggn/7cde3965eeb6833bfab9dee6c1d2b1e8 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 | |
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