mirror of
https://gitee.com/openharmony/third_party_nghttp2
synced 2024-11-24 00:10:12 +00:00
8 lines
155 B
Plaintext
8 lines
155 B
Plaintext
|
#!/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
|