Skip to content

Commit 474d2ce

Browse files
committed
Fix script
1 parent 8b1a01f commit 474d2ce

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This is a [work-in-progress](https://github.com/tree-sitter/tree-sitter/issues/1
2222

2323
```swift
2424
dependencies: [
25-
.package(url: "https://github.com/krzyzanowskim/tree-sitter-xcframework", from: "0.208.2")
25+
.package(url: "https://github.com/krzyzanowskim/tree-sitter-xcframework", from: "0.208.4")
2626
]
2727
```
2828

TreeSitter.xcframework/Info.plist

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,18 @@
2121
</dict>
2222
<dict>
2323
<key>LibraryIdentifier</key>
24-
<string>ios-arm64</string>
24+
<string>ios-arm64_x86_64-simulator</string>
2525
<key>LibraryPath</key>
2626
<string>TreeSitter.framework</string>
2727
<key>SupportedArchitectures</key>
2828
<array>
2929
<string>arm64</string>
30+
<string>x86_64</string>
3031
</array>
3132
<key>SupportedPlatform</key>
3233
<string>ios</string>
34+
<key>SupportedPlatformVariant</key>
35+
<string>simulator</string>
3336
</dict>
3437
<dict>
3538
<key>LibraryIdentifier</key>
@@ -46,18 +49,15 @@
4649
</dict>
4750
<dict>
4851
<key>LibraryIdentifier</key>
49-
<string>ios-arm64_x86_64-simulator</string>
52+
<string>ios-arm64</string>
5053
<key>LibraryPath</key>
5154
<string>TreeSitter.framework</string>
5255
<key>SupportedArchitectures</key>
5356
<array>
5457
<string>arm64</string>
55-
<string>x86_64</string>
5658
</array>
5759
<key>SupportedPlatform</key>
5860
<string>ios</string>
59-
<key>SupportedPlatformVariant</key>
60-
<string>simulator</string>
6161
</dict>
6262
</array>
6363
<key>CFBundlePackageType</key>
Binary file not shown.
Binary file not shown.

scripts/build-tree-sitter.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -euxo pipefail
44

55
BASE_PWD="$PWD"
66
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
7-
LANGUAGE_DATA_DIR="$SCRIPT_DIR/../Sources/tree_sitter_language_resources/LanguageResources"
7+
LANGUAGE_DATA_DIR="$SCRIPT_DIR/../Sources/TreeSitterResource/LanguageResources"
88

99
FRAMEWORK_NAME="TreeSitter"
1010

0 commit comments

Comments
 (0)