Skip to content

Commit

Permalink
Merge pull request elastic#7629 from spalger/fix/7628
Browse files Browse the repository at this point in the history
[ui/doc_viewer] ensure the ui/render_directive is imported
  • Loading branch information
spalger authored Jul 5, 2016
2 parents b86d780 + e98c3d4 commit 935f597
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/ui/public/doc_viewer/doc_viewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import $ from 'jquery';
import uiModules from 'ui/modules';
import DocViewsProvider from 'ui/registry/doc_views';

import 'ui/render_directive';
import 'ui/doc_viewer/doc_viewer.less';

uiModules.get('kibana')
Expand Down
2 changes: 1 addition & 1 deletion test/scripts/jenkins_build_snapshot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -e

"$(dirname $0)/jenkins_setup.sh"

"$(npm bin)/grunt" build;
"$GRUNT" build;
8 changes: 8 additions & 0 deletions test/scripts/jenkins_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,11 @@ nvm install "$(cat .node-version)"
### NPM ###
###*****###
npm install


if [ -z "$(npm bin)" ]; then
echo "npm does not know where it stores executables..... huh??"
exit 1
fi

export GRUNT="$(npm bin)/grunt"
2 changes: 1 addition & 1 deletion test/scripts/jenkins_unit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -e

"$(dirname $0)/jenkins_setup.sh"

xvfb-run "$(npm bin)/grunt" jenkins:unit;
xvfb-run "$GRUNT" jenkins:unit;

0 comments on commit 935f597

Please sign in to comment.