diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2020-04-28 08:41:34 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2020-04-28 13:57:42 +0200 |
commit | df81c56524e578f569ea12854526c1461ac6e42d (patch) | |
tree | dc80bf12de9ea11682983ec527a881b27b3c7378 /org.eclipse.jgit.pgm | |
parent | c845db3ec2b73fcb91627a591344174a50d956cb (diff) | |
download | jgit-df81c56524e578f569ea12854526c1461ac6e42d.tar.gz jgit-df81c56524e578f569ea12854526c1461ac6e42d.zip |
Enable passing java options to jgit command line executable
This allows to pass java options to the jgit command line executable
by setting the environment variable "java_args", e.g.
$ java_args="-Xmx8g" jgit log
Change-Id: Ic7271b104737a8306d9db0f1895079b9f7bb7fd0
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.pgm')
-rw-r--r-- | org.eclipse.jgit.pgm/jgit.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit.pgm/jgit.sh b/org.eclipse.jgit.pgm/jgit.sh index e263782738..a369220037 100644 --- a/org.eclipse.jgit.pgm/jgit.sh +++ b/org.eclipse.jgit.pgm/jgit.sh @@ -79,7 +79,7 @@ CYGWIN*) Darwin) if [ -e /System/Library/Frameworks/JavaVM.framework ] then - java_args=' + java_args+=' -Dcom.apple.mrj.application.apple.menu.about.name=JGit -Dcom.apple.mrj.application.growbox.intrudes=false -Dapple.laf.useScreenMenuBar=true |