Skip to content

Commit c7ac7cf

Browse files
committed
fix(swift-package): build directory path
1 parent 1016d58 commit c7ac7cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/swift/plugin/vector.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ func createvectorBuildCommands(packageDirectory: URL?, outputDirectory: URL) ->
4848
4949
# Build directly from source directory with custom output paths
5050
cd "\(workingDirectory)" && \
51-
echo "Building XCFramework with native network..." && \
52-
make xcframework NATIVE_NETWORK=ON DIST_DIR="\(outputDirectory.path)" BUILD_RELEASE="\(outputDirectory.path)/build/release" BUILD_TEST="\(outputDirectory.path)/build/test" && \
51+
echo "Building XCFramework..." && \
52+
make xcframework DIST_DIR="\(outputDirectory.path)" BUILD_DIR="\(outputDirectory.path)/build" && \
5353
rm -rf "\(outputDirectory.path)/build" && \
5454
echo "XCFramework build completed successfully!"
5555
"""

0 commit comments

Comments
 (0)