[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>
(cherry picked from commit aff1826331)
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 b58170b192
commit 3dc74e7aa6

View file

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