aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgretchen <gretchen@gnar.cool>2019-11-18 17:07:54 -0800
committergretchen <gretchen@gnar.cool>2019-11-18 17:07:54 -0800
commita2211cc113164f0fac16584a1b7a6f80aeae54b9 (patch)
treed5b754afbcda970a4822bc64ce38c9dc192ec696
parent4564ac3a85f45b7c2f4978702bd61a1cba4d3358 (diff)
downloadnorns-etc-a2211cc113164f0fac16584a1b7a6f80aeae54b9.tar.gz
norns-etc-a2211cc113164f0fac16584a1b7a6f80aeae54b9.zip
Parallelize example makefile
-rw-r--r--example/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/Makefile b/example/Makefile
index bbaebf9..e75b4f6 100644
--- a/example/Makefile
+++ b/example/Makefile
@@ -3,7 +3,7 @@ NORNS=norns.local
all:
upload: example.lua
- find . -not -path '*/\.*' -type f -exec norns_upload example "{}" \;
+ find . -not -path '*/\.*' -type f | xargs -P 5 -n 1 norns_upload example
norns_load example example.lua
.PHONY: all upload