mirror of
https://github.com/home-assistant/core.git
synced 2025-04-22 16:27:56 +00:00

* Fail if dirty * Update check_dirty * Update text * Fix comment * Add -e * Update dirty script
8 lines
238 B
Bash
Executable File
8 lines
238 B
Bash
Executable File
#!/bin/bash
|
|
[[ -z $(git ls-files --others --exclude-standard) ]] && exit 0
|
|
|
|
echo -e '\n***** ERROR\nTests are leaving files behind. Please update the tests to avoid writing any files:'
|
|
git ls-files --others --exclude-standard
|
|
echo
|
|
exit 1
|