Skip to content
This repository has been archived by the owner on Jun 27, 2019. It is now read-only.

Commit

Permalink
install.sh: Test if sol-fbp-to-dot was installed with Soletta
Browse files Browse the repository at this point in the history
Signed-off-by: Bruno Bottazzini <bruno.bottazzini@intel.com>
  • Loading branch information
Bruno Bottazzini committed May 2, 2016
1 parent 300df22 commit 78c1fe8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,13 @@ if [ -z "$FBP_RUNNER_PATH" ]; then
exit 1
fi

FBP_DOT=$(which sol-fbp-to-dot)
test_dep "sol-fbp-to-dot" 1
if [ $RETVAL -eq 1 ]; then
echo "Recompile soletta with FBP_TO_DOT support"
exit 1
fi

test_dep "dot" 0 "graphviz"

test_dep "npm" 0 "npm"
Expand Down

0 comments on commit 78c1fe8

Please sign in to comment.