Skip to content

Commit

Permalink
Correct error in Makefile
Browse files Browse the repository at this point in the history
Signed-off-by: David Greaves <[email protected]>
  • Loading branch information
lbt committed May 24, 2017
1 parent cebc18a commit 48c22f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ install:

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

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

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

0 comments on commit 48c22f3

Please sign in to comment.