-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into issue/6556
- Loading branch information
Showing
210 changed files
with
4,238 additions
and
3,051 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.aws-config.json | ||
.ackrc | ||
.DS_Store | ||
.node_binaries | ||
node_modules | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/sh | ||
SCRIPT=$0 | ||
|
||
# SCRIPT may be an arbitrarily deep series of symlinks. Loop until we have the concrete path. | ||
while [ -h "$SCRIPT" ] ; do | ||
ls=$(ls -ld "$SCRIPT") | ||
# Drop everything prior to -> | ||
link=$(expr "$ls" : '.*-> \(.*\)$') | ||
if expr "$link" : '/.*' > /dev/null; then | ||
SCRIPT="$link" | ||
else | ||
SCRIPT=$(dirname "$SCRIPT")/"$link" | ||
fi | ||
done | ||
|
||
DIR="$(dirname "${SCRIPT}")/.." | ||
NODE="${DIR}/node/bin/node" | ||
test -x "$NODE" || NODE=$(which node) | ||
if [ ! -x "$NODE" ]; then | ||
echo "unable to find usable node.js executable." | ||
exit 1 | ||
fi | ||
|
||
exec "${NODE}" $NODE_OPTIONS "${DIR}/src/cli_plugin" ${@} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
@echo off | ||
|
||
SETLOCAL | ||
|
||
set SCRIPT_DIR=%~dp0 | ||
for %%I in ("%SCRIPT_DIR%..") do set DIR=%%~dpfI | ||
|
||
set NODE=%DIR%\node\node.exe | ||
|
||
WHERE /Q node | ||
IF %ERRORLEVEL% EQU 0 ( | ||
for /f "delims=" %%i in ('WHERE node') do set SYS_NODE=%%i | ||
) | ||
|
||
If Not Exist "%NODE%" ( | ||
IF Exist "%SYS_NODE%" ( | ||
set "NODE=%SYS_NODE%" | ||
) else ( | ||
Echo unable to find usable node.js executable. | ||
Exit /B 1 | ||
) | ||
) | ||
|
||
TITLE Kibana Server | ||
"%NODE%" %NODE_OPTIONS% "%DIR%\src\cli_plugin" %* | ||
|
||
:finally | ||
|
||
ENDLOCAL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.