Skip to content

Commit

Permalink
More makefile adjustments, adjust control flow
Browse files Browse the repository at this point in the history
  • Loading branch information
ividito committed Dec 4, 2024
1 parent 44bcb43 commit 82ff819
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sm2a/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ count_down = \
@echo "Spinning up the system please wait..."; \
secs=40; \
while [ $secs -gt 0 ]; do \
printf "%d\033[0K\r" $secs; \
printf "%d\033[0K\r" "$secs"; \
sleep 1; \
((secs--)); \
done;
Expand All @@ -24,6 +24,8 @@ count_down = \

all: sm2a-local-init sm2a-local-run

refresh: sm2a-local-build sm2a-local-run

sm2a-local-run: sm2a-local-stop
@echo "Running SM2A"
docker compose up -d
Expand Down

0 comments on commit 82ff819

Please sign in to comment.