summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--justfile7
1 files changed, 5 insertions, 2 deletions
diff --git a/justfile b/justfile
index 8036a59..93360aa 100644
--- a/justfile
+++ b/justfile
@@ -36,8 +36,11 @@ generate:
install_ios derived_data=derived_data:
xcrun devicectl device install app --device {{device_identifier}} {{derived_data}}/{{target}}-*/Build/Products/Release-iphoneos/{{target}}.app
-run_ios:
- xcrun devicectl device process launch --device {{device_identifier}} {{identifier}}
+run_ios flags="":
+ xcrun devicectl device process launch {{flags}} --device {{device_identifier}} {{identifier}}
+
+run_ios_log:
+ just run_ios --console
ios:
just build_ios