6650f1
Fix path to manuals in Help/help_getEntry.sh.
@@ -45,17 +45,16 @@ function help_getEntry {
|
|
45
45
|
|
46
46
|
# Verify the entry relative path to find out which documentation
|
47
47
|
# manual we are acting on. As convenction, whatever documentation
|
48
|
-
# entry you provide outside trunk/
|
49
|
-
#
|
50
|
-
#
|
51
|
-
#
|
52
|
-
#
|
53
|
-
#
|
54
|
-
#
|
55
|
-
#
|
48
|
+
# entry you provide outside trunk/Manuals/ directory structure is
|
49
|
+
# considered as you are documenting the repository directory
|
50
|
+
# structure. Otherwise, if an entry inside trunk/Manuals/ is
|
51
|
+
# provided, the directory structure provided is used as default
|
52
|
+
# documentation manual for actions like `--create' and `--update'
|
53
|
+
# to take place on. Other options like `--edit', `--delete' and
|
54
|
+
# `--read' cannot be applied to paths provided inside
|
55
|
+
# trunk/Manuals/ such actions need to be performed manually.
|
56
|
-
# to be performed manually.
|
57
56
|
if [[ ${ENTRY} =~ '\.texi$' ]];then
|
58
|
-
ENTRY=$(echo ${ENTRY} | sed 's!trunk/
|
57
|
+
ENTRY=$(echo ${ENTRY} | sed 's!trunk/Manuals/!!')
|
59
58
|
else
|
60
59
|
ENTRY=$(dirname Directories/${ENTRY})/$(basename $LOCATION).texi
|
61
60
|
fi
|