summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--justfile11
1 files changed, 10 insertions, 1 deletions
diff --git a/justfile b/justfile
index a03d71c..8036a59 100644
--- a/justfile
+++ b/justfile
@@ -24,7 +24,7 @@ build destination="platform=macOS":
build_ios:
just build "platform=iOS,arch=arm64,name={{device_name}}"
-open:
+run:
just _open {{target}}
install derived_data=derived_data location=location:
@@ -38,3 +38,12 @@ install_ios derived_data=derived_data:
run_ios:
xcrun devicectl device process launch --device {{device_identifier}} {{identifier}}
+
+ios:
+ just build_ios
+ just install_ios
+ just run_ios
+
+macos:
+ just build
+ just run