Skip to content

Commit 48c22f3

Browse files
committed
Correct error in Makefile
Signed-off-by: David Greaves <[email protected]>
1 parent cebc18a commit 48c22f3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ install:
55

66
install -D -m 644 conf/apache_webhook.conf $(DESTDIR)/etc/apache2/vhosts.d/webhook.conf
77

8-
for p in $(cd src/participants; ls *py | cut -f1 -d.) ; do \
8+
for p in $$(cd src/participants; ls *py | cut -f1 -d.) ; do \
99
install -D -m 755 src/participants/$$p.py $(DESTDIR)/usr/share/boss-skynet/$$p.py ; \
1010
install -D -m 644 conf/supervisor/$$p.conf $(DESTDIR)/etc/supervisor/conf.d/$$p.conf ; \
1111
done
12+
exit
1213

1314
install -D -m 644 src/service/tar_git.service $(DESTDIR)/usr/lib/obs/service/tar_git.service
1415
install -D -m 755 src/service/tar_git $(DESTDIR)/usr/lib/obs/service/tar_git

0 commit comments

Comments
 (0)