Skip to content

Commit 0817a26

Browse files
zawataianhattendorf
authored andcommitted
Minor cleanups
1 parent b506c59 commit 0817a26

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

utils/acquireOpenSSL.js

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -114,24 +114,23 @@ const buildLinux = async (buildCwd) => {
114114
`--prefix="${extractPath}"`,
115115
`--openssldir="${extractPath}"`
116116
];
117-
await execPromise(`./Configure ${arguments.join(" ")}`, {
117+
await execPromise(`./Configure ${arguments.join(' ')}`, {
118118
cwd: buildCwd
119119
}, { pipeOutput: true });
120120

121121
await applyOpenSSLPatches(buildCwd);
122122

123123
// only build the libraries, not the tests/fuzzer or apps
124-
await execPromise("make build_libs", {
124+
await execPromise('make build_libs', {
125125
cwd: buildCwd
126126
}, { pipeOutput: true });
127127

128-
//TODO: uncomment
129-
// await execPromise("make test", {
130-
// cwd: buildCwd
131-
// }, { pipeOutput: true });
128+
await execPromise('make test', {
129+
cwd: buildCwd
130+
}, { pipeOutput: true });
132131

133132
//only install software, not the docs
134-
await execPromise("make install_sw", {
133+
await execPromise('make install_sw', {
135134
cwd: buildCwd,
136135
maxBuffer: 10 * 1024 * 1024 // we should really just use spawn
137136
}, { pipeOutput: true });

0 commit comments

Comments
 (0)