Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-04-23 18:11:27 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-04-23 18:11:27 (GMT)
commit98be0f0a8743055bf4dc1bc5a863861d0c34f725 (patch)
tree42c1433a56ff50c8829346e8b7c37911a63dad4c
parent421dd71b94f67678423a34c14bf579b9c19477a8 (diff)
Ignore timestamp of .git directories
-rw-r--r--devbot/sourcestamp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/devbot/sourcestamp.c b/devbot/sourcestamp.c
index c5dffd6..e2b9663 100644
--- a/devbot/sourcestamp.c
+++ b/devbot/sourcestamp.c
@@ -35,10 +35,6 @@ list_dir(const char *dir, time_t *mtime, int *n_files)
lstat(entry->d_name, &statbuf);
- if (statbuf.st_mtime > *mtime) {
- *mtime = statbuf.st_mtime;
- }
-
if(S_ISDIR(statbuf.st_mode)) {
if(strcmp(".", entry->d_name) == 0 ||
strcmp("..", entry->d_name) == 0 ||
@@ -47,6 +43,10 @@ list_dir(const char *dir, time_t *mtime, int *n_files)
list_dir(entry->d_name, mtime, n_files);
}
+
+ if (statbuf.st_mtime > *mtime) {
+ *mtime = statbuf.st_mtime;
+ }
}
chdir("..");