We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cebc18a commit 48c22f3Copy full SHA for 48c22f3
Makefile
@@ -5,10 +5,11 @@ install:
5
6
install -D -m 644 conf/apache_webhook.conf $(DESTDIR)/etc/apache2/vhosts.d/webhook.conf
7
8
- for p in $(cd src/participants; ls *py | cut -f1 -d.) ; do \
+ for p in $$(cd src/participants; ls *py | cut -f1 -d.) ; do \
9
install -D -m 755 src/participants/$$p.py $(DESTDIR)/usr/share/boss-skynet/$$p.py ; \
10
install -D -m 644 conf/supervisor/$$p.conf $(DESTDIR)/etc/supervisor/conf.d/$$p.conf ; \
11
done
12
+ exit
13
14
install -D -m 644 src/service/tar_git.service $(DESTDIR)/usr/lib/obs/service/tar_git.service
15
install -D -m 755 src/service/tar_git $(DESTDIR)/usr/lib/obs/service/tar_git
0 commit comments