5 lines
144 B
Bash
Executable file
5 lines
144 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euxo pipefail
|
|
|
|
rm -rf .lake/build
|
|
(lake build 2>&1 && exit 1 || true) | grep --color -F 'module source file not found'
|