Skip to content

Commit 128857f

Browse files
author
Damien Nadé
committed
debian/rules: including argsparse-completion in package
1 parent 31bb4c3 commit 128857f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

debian/rules

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ override_dh_install:
44
dh_install
55
rm -R debian/bash-argsparse
66
mkdir -p debian/bash-argsparse/usr/bin
7-
install -m 0755 argsparse.sh debian/bash-argsparse/usr/bin
8-
ln -s argsparse.sh debian/bash-argsparse/usr/bin/argsparse
7+
for file in argsparse argsparse-completion; do \
8+
install -m 0755 "$$file.sh" debian/bash-argsparse/usr/bin
9+
ln -s "$$file.sh" debian/bash-argsparse/usr/bin/"$$file"
910

1011
build:
1112
dh build

0 commit comments

Comments
 (0)