Add install_bats script

This commit is contained in:
TApplencourt 2015-10-28 14:49:12 +01:00
parent e09b749892
commit 3b132a5d89
1 changed files with 13 additions and 0 deletions

13
install/scripts/install_bats.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash -x
TARGET=bats
function _install()
{
cp -R ${BUILD} . || exit 1
cd ../bin
ln -s ../install/${TARGET}/libexec/bats . || return 1
cd -
}
source scripts/build.sh