summaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
Diffstat (limited to 'justfile')
-rw-r--r--justfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/justfile b/justfile
index f2aff8d..a79a134 100644
--- a/justfile
+++ b/justfile
@@ -13,7 +13,9 @@ format:
just _format {{target}}
build:
- just _build {{target}}
+ command -v xcbeautify >/dev/null 2>&1 \
+ && xcodebuild -configuration Release -scheme {{target}} build | xcbeautify \
+ || just _build {{target}}
open:
just _open {{target}}