Cloud storage: better error message for dirty state

Tell us WHAT is wrong with the state.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-08-23 11:29:49 -07:00
parent b8575221b1
commit 4c31c01139

View file

@ -69,7 +69,7 @@ static int check_clean(const char *path, unsigned int status, void *payload)
status &= ~GIT_STATUS_CURRENT | GIT_STATUS_IGNORED;
if (!status)
return 0;
report_error("WARNING: Git cache directory modified (path %s)", path);
report_error("WARNING: Git cache directory modified (path %s) status %0x", path, status);
return 1;
}