Skip to content

Commit 7fd55fd

Browse files
committed
debug: extraction
1 parent a172797 commit 7fd55fd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

setup-local/dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1238,8 +1238,8 @@ class BinaryControl {
12381238
core.info('Downloading BrowserStackLocal binary...');
12391239
const downloadPath = await tc.downloadTool(this.binaryLink, path.resolve(this.binaryFolder, 'binaryZip'));
12401240
core.info(`Downloaded Path: ${downloadPath}`);
1241-
// const extractedPath = await tc.extractZip(downloadPath, this.binaryFolder);
1242-
// core.info(`BrowserStackLocal binary downloaded & extracted successfuly at: ${extractedPath}`);
1241+
const extractedPath = await tc.extractZip(downloadPath, this.binaryFolder);
1242+
core.info(`BrowserStackLocal binary downloaded & extracted successfuly at: ${extractedPath}`);
12431243
// const cachedPath = await tc.cacheDir(extractedPath, LOCAL_BINARY_NAME, '1.0.0');
12441244
// core.addPath(cachedPath);
12451245
} catch (e) {

setup-local/src/binaryControl.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ class BinaryControl {
173173
core.info('Downloading BrowserStackLocal binary...');
174174
const downloadPath = await tc.downloadTool(this.binaryLink, path.resolve(this.binaryFolder, 'binaryZip'));
175175
core.info(`Downloaded Path: ${downloadPath}`);
176-
// const extractedPath = await tc.extractZip(downloadPath, this.binaryFolder);
177-
// core.info(`BrowserStackLocal binary downloaded & extracted successfuly at: ${extractedPath}`);
176+
const extractedPath = await tc.extractZip(downloadPath, this.binaryFolder);
177+
core.info(`BrowserStackLocal binary downloaded & extracted successfuly at: ${extractedPath}`);
178178
// const cachedPath = await tc.cacheDir(extractedPath, LOCAL_BINARY_NAME, '1.0.0');
179179
// core.addPath(cachedPath);
180180
} catch (e) {

0 commit comments

Comments
 (0)