File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -91,8 +91,9 @@ Usage()
91
91
92
92
exec >&2
93
93
echo " "
94
- echo " Usage: ${progname} <deploy|derby|update|updateQuietly|usage|help|histzap >"
94
+ echo " Usage: ${progname} <deploy|derby|update|updateQuietly|usage|help>"
95
95
echo " ${progname} index [<directory>]"
96
+ echo " ${progname} clearHistory [<repository_name>]"
96
97
echo " "
97
98
echo " Optional environment variables:"
98
99
echo " OPENGROK_CONFIGURATION - location of your configuration"
@@ -885,7 +886,7 @@ DerbyServer()
885
886
#
886
887
# Clear history index for given project.
887
888
#
888
- ZapHistory ()
889
+ ClearHistory ()
889
890
{
890
891
Progress " Removing history index data for repository ${1} "
891
892
StdInvocation -k " ${1} "
@@ -942,11 +943,11 @@ case "${1}" in
942
943
UpdateDescriptionCache
943
944
;;
944
945
945
- zaphist )
946
+ clearHistory )
946
947
if [ -z " ${2} " ]; then
947
948
Usage
948
949
fi
949
- ZapHistory " ${2} "
950
+ ClearHistory " ${2} "
950
951
;;
951
952
952
953
usage|help)
You can’t perform that action at this time.
0 commit comments