Skip to content

Commit

Permalink
Makefile: fix target graceful
Browse files Browse the repository at this point in the history
  • Loading branch information
reinhardt committed Jan 5, 2024
1 parent 0d14e61 commit 313ecd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ graceful: .installed.cfg
./bin/supervisord 2> /dev/null || ( \
./bin/supervisorctl reread && \
./bin/supervisorctl update && \
for process in `./bin/supervisorctl status|awk '{print $1}'`; do \
for process in `./bin/supervisorctl status|awk '{print $$1}'`; do \
./bin/supervisorctl restart "$$process" && \
sleep 30; \
done \
Expand Down

0 comments on commit 313ecd8

Please sign in to comment.