Skip to content

Commit b465b37

Browse files
authored
Merge pull request #1841 from tulinkry/rename_env_var
rename IGNORE_PATTERNS to OPENGROK_IGNORE_PATTERNS
2 parents 1515b2f + 80dbf7d commit b465b37

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

OpenGrok

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,12 @@
8080
# - OPENGROK_ENABLE_PROJECTS Enable projects (set it to true or false)
8181
# Every directory in SRC_ROOT is
8282
# considered a separate project
83+
# - OPENGROK_IGNORE_PATTERNS Set ignored patterns for indexer to skip.
84+
# OPENGROK_IGNORE_PATTERNS="-i dummy"
85+
# OPENGROK_IGNORE_PATTERNS="-i f:dummy"
86+
# OPENGROK_IGNORE_PATTERNS="-i d:dummy"
87+
# Multiple entries can be joined together:
88+
# "-i dummy -i d:tmp -i f:dummy"
8389
# - OPENGROK_SCAN_REPOS Disable Scan for repositories (*)
8490
# - OPENGROK_SCAN_DEPTH how deep should scanning for repos go
8591
# (by default 3 directories from SRC_ROOT)
@@ -275,7 +281,7 @@ DefaultInstanceConfiguration()
275281
#JAVA_DEBUG="$JAVA_DEBUG,server=y,address=8010,suspend=y"
276282

277283
# OPTIONAL: Ignore these patterns as names of files or directories
278-
#IGNORE_PATTERNS="-i dummy"
284+
#OPENGROK_IGNORE_PATTERNS="-i dummy"
279285
# To ignore skipping just the history cache creation for a particular
280286
# directory and all of it's subdirectories, touch an empty
281287
# .opengrok_skip_history file at the root of that directory
@@ -840,7 +846,7 @@ MinimalInvocation()
840846
CommonInvocation()
841847
{
842848
MinimalInvocation \
843-
${IGNORE_PATTERNS} \
849+
${OPENGROK_IGNORE_PATTERNS} \
844850
${HISTORY_TAGS} \
845851
${GENERATE_HISTORY} \
846852
${RENAMED_FILES_HISTORY} \

0 commit comments

Comments
 (0)