Skip to content

Commit 9f5f564

Browse files
committed
fix shell wrapper
1 parent d761fa9 commit 9f5f564

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

dist/java-debug-server

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ if which -s uname;then
66
fi
77
SCRIPTS_DIR=$(dirname $(readlink -f "${BASH_SOURCE[0]}"))
88
if [[ "${OS}" == 'darwin' ]]; then
9-
${SCRIPTS_DIR}/debug_adapter_mac.sh
9+
${SCRIPTS_DIR}/debug_adapter_mac.sh $@
1010
elif [[ "${OS}" == 'linux' ]]; then
11-
${SCRIPTS_DIR}/debug_adapter_linux.sh
11+
${SCRIPTS_DIR}/debug_adapter_linux.sh $@
1212
else
13-
${SCRIPTS_DIR}/debug_adapter_windows.sh
13+
${SCRIPTS_DIR}/debug_adapter_windows.sh $@
1414
fi

dist/java-language-server

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ if which -s uname;then
66
fi
77
SCRIPTS_DIR=$(dirname $(readlink -f "${BASH_SOURCE[0]}"))
88
if [[ "${OS}" == 'darwin' ]]; then
9-
${SCRIPTS_DIR}/lang_server_mac.sh
9+
${SCRIPTS_DIR}/lang_server_mac.sh $@
1010
elif [[ "${OS}" == 'linux' ]]; then
11-
${SCRIPTS_DIR}/lang_server_linux.sh
11+
${SCRIPTS_DIR}/lang_server_linux.sh $@
1212
else
13-
${SCRIPTS_DIR}/lang_server_windows.sh
13+
${SCRIPTS_DIR}/lang_server_windows.sh $@
1414
fi

0 commit comments

Comments
 (0)