scripts/combo-layer: fix dirty repo check

Fix the dirty repository check to detect any changes, including
untracked files and uncommitted changes in the index.

(From OE-Core rev: f03fa8bbafa82ce6b09c08bf86011b6c51eb3531)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Paul Eggleton 2011-11-02 17:20:26 +00:00 committed by Richard Purdie
parent 25fc202e21
commit 948d28e801
1 changed files with 2 additions and 6 deletions

View File

@ -138,12 +138,8 @@ def check_repo_clean(repodir):
check if the repo is clean
exit if repo is dirty
"""
try:
runcmd("git diff --quiet", repodir)
#TODO: also check the index using "git diff --cached"
# but this will fail in just initialized git repo
# so need figure out a way
except:
output=runcmd("git status --porcelain", repodir)
if output:
logger.error("git repo %s is dirty, please fix it first", repodir)
sys.exit(1)