Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: Jiří Techet techet@gmail.com Date: Sun, 19 Oct 2014 18:19:59 UTC Commit: c5ded4ee8ca7e4bb1ba7518dbe83fee910acb1e3 https://github.com/geany/geany-plugins/commit/c5ded4ee8ca7e4bb1ba7518dbe83fe...
Log Message: ----------- geanyctags: ignore hidden directories for tag generation (on linux)
Modified Paths: -------------- geanyctags/src/geanyctags.c
Modified: geanyctags/src/geanyctags.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -181,7 +181,7 @@ static gchar *generate_find_string(GeanyProject *prj) { gchar *ret;
- ret = g_strdup("find"); + ret = g_strdup("find . -not -path '*/\.*'");
if (!EMPTY(prj->file_patterns)) {
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).