From 21921900631cede413a2923d8d1bf23164ce6076 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 24 Sep 2019 09:25:24 -0400 Subject: [PATCH] map out absolute path --- gulpfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 8c55f64b43..077ac16371 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -195,7 +195,8 @@ function distSafariApp(cb, subBuildPath, devId) { stdOutProc(proc); return new Promise((resolve) => proc.on('close', resolve)); }).then(() => { - const libs = fs.readdirSync(builtAppexFrameworkPath).filter((p) => p.endsWith('.dylib')); + const libs = fs.readdirSync(builtAppexFrameworkPath).filter((p) => p.endsWith('.dylib')) + .map((p) => builtAppexFrameworkPath + p); const allItems = libs.concat([builtAppexPath]); const promises = []; allItems.forEach ((i) => {