diff options
author | EuAndreh <eu@euandre.org> | 2024-03-29 10:29:33 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-03-29 10:29:37 -0300 |
commit | 17b87f34dc8afb1101fd6a2c5a60319123c965a4 (patch) | |
tree | 14edba451fae211087d7af60427d18d90551528d | |
parent | go.mod: Unmark go-sqlite3 as indirect (diff) | |
download | papod-17b87f34dc8afb1101fd6a2c5a60319123c965a4.tar.gz papod-17b87f34dc8afb1101fd6a2c5a60319123c965a4.tar.xz |
Makefile: Reorder commands so we don't need to sleep
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -145,9 +145,8 @@ run-binder: ## Run papo locally and its helper programs. run: all - for c in papo wscat glaze binder; do \ + for c in wscat papo binder glaze; do \ $(MAKE) run-$$c & \ - sleep 0.1; \ done; \ wait |