fdedcf53bb
Basic checks / Compilation, Unit and Integration Tests (push) Has been cancelled
Basic checks / Hygiene and Layering (push) Has been cancelled
Basic checks / Warm up node modules cache (push) Has been cancelled
Check Format and Lint / lint-and-format (push) Has been cancelled
7 lines
222 B
Bash
Executable File
7 lines
222 B
Bash
Executable File
R=`git status --porcelain | wc -l`
|
|
if [ "$R" -ne "0" ]; then
|
|
echo "The git repo is not clean after compiling the /build/ folder. Did you forget to commit .js output for .ts files?";
|
|
git status --porcelain
|
|
exit 1;
|
|
fi
|