lean4-htt/examples/init/test.sh
2021-09-13 11:40:05 -04:00

21 lines
284 B
Bash
Executable file

set -ex
./clean.sh
# Test `new`
../../build/bin/lake new helloNew
cd helloNew
../../../build/bin/lake build-bin
./build/bin/helloNew
cd ..
# Test `init`
mkdir helloInit
cd helloInit
../../../build/bin/lake init helloInit
../../../build/bin/lake build-bin
./build/bin/helloInit