Fix Linux API binary name in archive script

This commit is contained in:
Oliver Hamlet
2016-07-22 19:39:13 +01:00
parent 863939c2c5
commit 0133979d4f
+1 -1
View File
@@ -76,7 +76,7 @@ function getApiBinaryPaths(rootPath) {
if (os.platform() === 'win32') {
file += '.dll';
} else {
file += '.so';
file = `lib${file}.so`;
}
for (let i = 0; i < pathsToTry.length; ++i) {