Skip to content

Commit

Permalink
Wrong package path to ScrubApp (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
lastnico authored and nemonster committed Apr 26, 2019
1 parent 3ad57eb commit 9d5e20d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/scrub.bat
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ if not defined DIAG_JAVA_OPTIONS (
set DIAG_JAVA_OPTIONS=-Xmx2000m
)

"%JAVA_EXEC%" %DIAG_JAVA_OPTIONS% -cp .\;.\lib\* com.elastic.support.diagnostics.ScrubApp %*
"%JAVA_EXEC%" %DIAG_JAVA_OPTIONS% -cp .\;.\lib\* com.elastic.support.scrub.ScrubApp %*

endlocal
2 changes: 1 addition & 1 deletion scripts/scrub.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ fi
[[ ${DIAG_JAVA_OPTS} == "" ]] && export DIAG_JAVA_OPTS="-Xms256m -Xmx2000m"

echo "Using ${DIAG_JAVA_OPTS} ${DIAG_DEBUG_OPTS} for options."
"$JAVA" $DIAG_JAVA_OPTS ${DIAG_DEBUG_OPTS} -cp .:./lib/* com.elastic.support.diagnostics.ScrubApp "$@"
"$JAVA" $DIAG_JAVA_OPTS ${DIAG_DEBUG_OPTS} -cp .:./lib/* com.elastic.support.scrub.ScrubApp "$@"

0 comments on commit 9d5e20d

Please sign in to comment.