From 0133979d4ff06a8c57ca743cf883f3056d1d0db0 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Fri, 22 Jul 2016 08:08:35 +0100 Subject: [PATCH] Fix Linux API binary name in archive script --- scripts/helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/helpers.js b/scripts/helpers.js index c565db0c..c41d5b3d 100644 --- a/scripts/helpers.js +++ b/scripts/helpers.js @@ -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) {