Skip to content

Commit

Permalink
Correct typo in GRADLE_OPTS for Windows
Browse files Browse the repository at this point in the history
The -XX:MaxHeapSize option should include the 'm' postfix to signify
that the value is megabytes rather than bytes.
  • Loading branch information
EzequielB authored and philwebb committed Nov 2, 2012
1 parent f528c39 commit 754af21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
if "%OS%"=="Windows_NT" setlocal

@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set GRADLE_OPTS=-XX:MaxPermSize=1024m -Xmx1024m -XX:MaxHeapSize=256 %GRADLE_OPTS%
set GRADLE_OPTS=-XX:MaxPermSize=1024m -Xmx1024m -XX:MaxHeapSize=256m %GRADLE_OPTS%
set DEFAULT_JVM_OPTS=

set DIRNAME=%~dp0
Expand Down

0 comments on commit 754af21

Please sign in to comment.