diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-10-09 18:51:15 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-10-09 18:51:15 +0200 |
commit | 6c1507afe3d046c65e1ae8b26aa92189fb0ec49f (patch) | |
tree | a6d8c6f1bff453093ecdaf1196279b7f64b28c39 | |
parent | b97a2b36ba38d89563c8789af996ae3e002635b7 (diff) |
fix java wrapper
-rwxr-xr-x | .local/share/bin/java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/share/bin/java b/.local/share/bin/java index 7e7d4d9..a189d14 100755 --- a/.local/share/bin/java +++ b/.local/share/bin/java @@ -1,4 +1,4 @@ #!/bin/sh # this is a stupid fix because java has no option to silence the # "Picked up _JAVA_OPTIONS:" message -exec /usr/bin/java $_SILENT_JAVA_OPTIONS $* +exec /usr/bin/java $_SILENT_JAVA_OPTIONS "$@" |