[SPARK-36270][BUILD][FOLLOWUP] Fix typo in the sbt memory setting

### What changes were proposed in this pull request?
remove the `$` in the `-Xms$256m` memory options

### Why are the changes needed?
fix typo

### Does this PR introduce _any_ user-facing change?
no

### How was this patch tested?
not needed

Closes #33557 from linhongliu-db/minor-fix.

Authored-by: Linhong Liu <linhong.liu@databricks.com>
Signed-off-by: Hyukjin Kwon <gurwls223@apache.org>
This commit is contained in:
Linhong Liu 2021-07-28 17:17:55 +09:00 committed by Hyukjin Kwon
parent f12793de20
commit aff1826331

View file

@ -119,7 +119,7 @@ get_mem_opts () {
local mem=${1:-$sbt_default_mem} local mem=${1:-$sbt_default_mem}
local codecache=128 local codecache=128
echo "-Xms$256m -Xmx${mem}m -XX:ReservedCodeCacheSize=${codecache}m" echo "-Xms256m -Xmx${mem}m -XX:ReservedCodeCacheSize=${codecache}m"
} }
require_arg () { require_arg () {