diff options
| -rw-r--r-- | justfile | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -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 |