File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ if which -s uname;then
6
6
fi
7
7
SCRIPTS_DIR=$( dirname $( readlink -f " ${BASH_SOURCE[0]} " ) )
8
8
if [[ " ${OS} " == ' darwin' ]]; then
9
- ${SCRIPTS_DIR} /debug_adapter_mac.sh
9
+ ${SCRIPTS_DIR} /debug_adapter_mac.sh $@
10
10
elif [[ " ${OS} " == ' linux' ]]; then
11
- ${SCRIPTS_DIR} /debug_adapter_linux.sh
11
+ ${SCRIPTS_DIR} /debug_adapter_linux.sh $@
12
12
else
13
- ${SCRIPTS_DIR} /debug_adapter_windows.sh
13
+ ${SCRIPTS_DIR} /debug_adapter_windows.sh $@
14
14
fi
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ if which -s uname;then
6
6
fi
7
7
SCRIPTS_DIR=$( dirname $( readlink -f " ${BASH_SOURCE[0]} " ) )
8
8
if [[ " ${OS} " == ' darwin' ]]; then
9
- ${SCRIPTS_DIR} /lang_server_mac.sh
9
+ ${SCRIPTS_DIR} /lang_server_mac.sh $@
10
10
elif [[ " ${OS} " == ' linux' ]]; then
11
- ${SCRIPTS_DIR} /lang_server_linux.sh
11
+ ${SCRIPTS_DIR} /lang_server_linux.sh $@
12
12
else
13
- ${SCRIPTS_DIR} /lang_server_windows.sh
13
+ ${SCRIPTS_DIR} /lang_server_windows.sh $@
14
14
fi
You can’t perform that action at this time.
0 commit comments