This repository has been archived on 2025-09-07. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
dotnet-installer/package_tool/setup/test_setup.sh
2015-10-15 16:57:43 -07:00

17 lines
No EOL
261 B
Bash
Executable file

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