diff options
| author | Fuwn <[email protected]> | 2026-03-24 05:58:57 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-03-24 05:58:57 +0000 |
| commit | b38a3817307aa8bd322a45570939b31f242bd809 (patch) | |
| tree | 73243cdc2e0e014a437cd1e1457a696c5b7d8030 /justfile | |
| parent | fix: include root folder items in top-level favorites filter (diff) | |
| download | sora-testing-b38a3817307aa8bd322a45570939b31f242bd809.tar.xz sora-testing-b38a3817307aa8bd322a45570939b31f242bd809.zip | |
feat: add localize just recipe
Diffstat (limited to 'justfile')
| -rw-r--r-- | justfile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -9,6 +9,7 @@ location := "/Users/${USER}/Applications" alias fmt := format alias b := build alias gen := generate +alias loc := localize fetch: curl https://raw.githubusercontent.com/Fuwn/justfiles/refs/heads/main/xcode.just > xcode.just @@ -27,6 +28,9 @@ build_ios configuration="Release": build_ios_simulator configuration="Release": just build "platform=iOS Simulator,name=iPhone 17 Pro" "{{configuration}}" +localize destination="platform=macOS" configuration="Debug": + xcodebuild -project Sora.xcodeproj -configuration {{configuration}} -scheme {{target}} -destination '{{destination}}' CODE_SIGNING_ALLOWED=NO build + test_ios_simulator scheme="SoraTests": xcodebuild -project Sora.xcodeproj -scheme {{scheme}} -destination 'platform=iOS Simulator,name=iPhone 17 Pro' test |