8 lines
147 B
Bash
8 lines
147 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo "Installing Catch..."
|
||
|
|
||
|
wget https://raw.githubusercontent.com/philsquared/Catch/develop/single_include/catch.hpp
|
||
|
|
||
|
echo "All done!"
|