dotnet-installer/package_tool/setup/test_setup.sh

17 lines
261 B
Bash
Raw Normal View History

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