Skip to content

Commit

Permalink
[chore]: remove unneeded caches after building xcframework (#36)
Browse files Browse the repository at this point in the history
* remove unneeded caches after building xcframework

* fix lint error
  • Loading branch information
lukepistrol authored Apr 14, 2023
1 parent 08cb9dc commit 9ceda95
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ identifier_name:
- vc

excluded:
- DerivedData
- DerivedData
- Tests
1 change: 0 additions & 1 deletion Tests/CodeEditLanguagesTests/CodeEditLanguagesTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import XCTest
@testable import CodeEditLanguages
import SwiftTreeSitter

// swiftlint:disable all
final class CodeEditLanguagesTests: XCTestCase {

let bundleURL = Bundle.module.resourceURL
Expand Down
7 changes: 7 additions & 0 deletions build_framework.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,11 @@ for lang in $LIST ; do
done
status "Language queries copied to package resources!"

# cleanup derived derived data

if [ -d "$PWD/DerivedData" ]; then
status "Cleaning up DerivedData..."
rm -rf "$PWD/DerivedData"
fi

status "Done!"

0 comments on commit 9ceda95

Please sign in to comment.