We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31c0de5 commit b7cf9f8Copy full SHA for b7cf9f8
2 files changed
redeclipse_server.bat
@@ -8,4 +8,4 @@ setlocal enableextensions enabledelayedexpansion
8
:init
9
set REDECLIPSE_BINARY=redeclipse_server
10
:start
11
- call "%REDECLIPSE_PATH%\redeclipse.bat"
+ call "%REDECLIPSE_PATH%\redeclipse.bat" %*
redeclipse_server.sh
@@ -1,5 +1,5 @@
1
#!/bin/sh
2
if [ -z "${REDECLIPSE_PATH+isset}" ]; then REDECLIPSE_PATH="$(cd "$(dirname "$0")" && pwd)"; fi
3
REDECLIPSE_BINARY="redeclipse_server"
4
-REDECLIPSE_CALLED="true"
5
-. "${REDECLIPSE_PATH}/redeclipse.sh"
+export REDECLIPSE_BINARY
+REDECLIPSE_CALLED="true" . "${REDECLIPSE_PATH}/redeclipse.sh" $@
0 commit comments