Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kabiroberai committed Nov 2, 2024
1 parent 488507b commit 2a77d75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/toolchain/BuildFlags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export class BuildFlags {
swiftpmSDKFlags(): string[] {
const flags: string[] = [];
if (configuration.sdk !== "") {
flags.push("--sdk", configuration.sdk);
flags.push("--sdk", configuration.sdk, ...this.swiftDriverTargetFlags(true));
}
if (configuration.swiftSDK !== "") {
flags.push("--swift-sdk", configuration.swiftSDK);
Expand Down

0 comments on commit 2a77d75

Please sign in to comment.