aboutsummaryrefslogtreecommitdiff
path: root/example/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '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