dotnet-installer/package_tool/setup/test_setup.sh

17 lines
288 B
Bash
Raw Normal View History

2015-10-15 23:16:58 +00:00
install_dependencies(){
apt-get update
2015-10-22 06:41:38 +00:00
apt-get install -y debhelper build-essential devscripts git liblttng-ust-dev clang-3.6
2015-10-15 23:16:58 +00:00
}
install_bats(){
git clone https://github.com/sstephenson/bats.git
cd bats
./install.sh /usr/local
}
setup(){
install_dependencies
install_bats
}
setup