Skip to content

Commit

Permalink
Comply with prettier 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoH2O1999 committed Nov 14, 2023
1 parent e00618f commit 38708cc
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/builder/darwin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,12 +189,10 @@ export default class MacOSBuilder extends Builder {
});
}
this.sslPath = this.sslPath.trim();
process.env[
'LDFLAGS'
] += `-L${this.sslPath}/lib -L${zlibPath}/lib -L${readLinePath}/lib `;
process.env[
'CFLAGS'
] += `-I${this.sslPath}/include -I${zlibPath}/include -I${readLinePath}/include `;
process.env['LDFLAGS'] +=
`-L${this.sslPath}/lib -L${zlibPath}/lib -L${readLinePath}/lib `;
process.env['CFLAGS'] +=
`-I${this.sslPath}/include -I${zlibPath}/include -I${readLinePath}/include `;
core.info(`OpenSSL path: ${this.sslPath}`);

// Fix for Python 3.0 SVN version
Expand Down

0 comments on commit 38708cc

Please sign in to comment.