Skip to content

Commit ca1cde8

Browse files
shaehnVladimir Kotal
authored andcommitted
Fixed renamed options in OpenGrok script (#1839)
This is for issue #1836
1 parent 947911a commit ca1cde8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

OpenGrok

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ DefaultInstanceConfiguration()
323323

324324
# OPTIONAL: Allow Leading Wildcard Searches
325325
# (default: on)
326-
LEADING_WILDCARD="-a on"
326+
LEADING_WILDCARD="--leadingWildCards on"
327327
if [ -n "${OPENGROK_WPREFIX}" ]
328328
then
329329
LEADING_WILDCARD=""
@@ -332,7 +332,7 @@ DefaultInstanceConfiguration()
332332
# OPTIONAL: Web Site Look & Feel
333333
# (Options: default)
334334
# Note the quoting requirements)
335-
#SKIN='-L default'
335+
#SKIN='--style default'
336336

337337
# OPTIONAL: Configuration Address (host:port)
338338
# (conf/web.xml default is localhost:2424)
@@ -998,7 +998,7 @@ DeployWar()
998998
ClearHistory()
999999
{
10001000
Progress "Removing history index data for repository ${1}"
1001-
MinimalInvocation -s "${SRC_ROOT}" -d "${DATA_ROOT}" -k "${1}"
1001+
MinimalInvocation -s "${SRC_ROOT}" -d "${DATA_ROOT}" --deleteHistory "${1}"
10021002
}
10031003

10041004
#
@@ -1042,7 +1042,7 @@ case "${1}" in
10421042
bootstrap)
10431043
ValidateConfiguration
10441044
CreateRuntimeRequirements
1045-
StdInvocation "-y"
1045+
StdInvocation "--updateConfig"
10461046
;;
10471047

10481048
index)

0 commit comments

Comments
 (0)