summaryrefslogtreecommitdiffstats
path: root/makebashcompletion
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 19:37:08 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 19:37:08 +0000
commitd710a65c8b50bc3d4d0920dc6e865296f42edd5e (patch)
treed3bf9843448af9398b55f49a50a194bbaacd724e /makebashcompletion
parentInitial commit. (diff)
downloadnghttp2-d710a65c8b50bc3d4d0920dc6e865296f42edd5e.tar.xz
nghttp2-d710a65c8b50bc3d4d0920dc6e865296f42edd5e.zip
Adding upstream version 1.59.0.upstream/1.59.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'makebashcompletion')
-rwxr-xr-xmakebashcompletion7
1 files changed, 7 insertions, 0 deletions
diff --git a/makebashcompletion b/makebashcompletion
new file mode 100755
index 0000000..9e88d9d
--- /dev/null
+++ b/makebashcompletion
@@ -0,0 +1,7 @@
+#!/bin/sh -e
+
+BCPATH=doc/bash_completion
+
+for prog in nghttp nghttpd nghttpx h2load; do
+ $BCPATH/make_bash_completion.py src/$prog > $BCPATH/$prog
+done