Skip to content

Commit a87a00f

Browse files
author
Damien Nadé
committed
debian/rules: fixed make/bash syntax
1 parent cdc7c56 commit a87a00f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

debian/rules

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ override_dh_install:
55
rm -R debian/bash-argsparse
66
mkdir -p debian/bash-argsparse/usr/bin
77
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"
8+
install -m 0755 "$$file.sh" debian/bash-argsparse/usr/bin ; \
9+
ln -s "$$file.sh" debian/bash-argsparse/usr/bin/"$$file" ; \
10+
done
1011

1112
build:
1213
dh build

0 commit comments

Comments
 (0)