mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
* Add back eslint and tsec to basic checks * ext * enable tsec * Add comments * Add check-clean-git-state * Make executable * update build & distro * Update size * distro
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
|