summaryrefslogtreecommitdiff
path: root/bin/couchjs.tpl.in
diff options
context:
space:
mode:
Diffstat (limited to 'bin/couchjs.tpl.in')
-rw-r--r--bin/couchjs.tpl.in10
1 files changed, 0 insertions, 10 deletions
diff --git a/bin/couchjs.tpl.in b/bin/couchjs.tpl.in
index 8b970756..ce9aecbe 100644
--- a/bin/couchjs.tpl.in
+++ b/bin/couchjs.tpl.in
@@ -22,8 +22,6 @@ DEFAULT_VERSION=170
basename=`basename $0`
display_version () {
- # Display version and copyright information.
-
cat << EOF
$basename - %package_name% %version%
@@ -41,8 +39,6 @@ EOF
}
display_help () {
- # Display a short description of the script's behaviour.
-
cat << EOF
Usage: $basename [FILE]
@@ -60,8 +56,6 @@ EOF
}
display_error () {
- # Display a short instruction referring users to further documentation.
-
if test -n "$1"; then
echo $1 >&2
fi
@@ -71,14 +65,10 @@ display_error () {
}
run_couchjs () {
- # Run the JavaScript interpreter shell with options.
-
exec %libbindir%/%couchjs_command_name% $@
}
parse_script_option_list () {
- # Parse the script option list and take the appropriate action.
-
set +e
options=`getopt hV $@`
if test ! $? -eq 0; then