Skip to content

Commit af6353b

Browse files
authored
Merge pull request actions#42 from akamai/revBuildSandboxClient
Rev build sandbox client
2 parents 752e1d6 + 67eced7 commit af6353b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/service/sandbox-client-manager.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const shell = require('shelljs');
1111
const fsExtra = require('fs-extra');
1212
const download = require('download');
1313

14-
const CONNECTOR_VERSION = '1.1.7';
14+
const CONNECTOR_VERSION = '1.1.8';
1515
const DOWNLOAD_PATH: string = `https://github.com/akamai/sandbox-client/releases/download/${CONNECTOR_VERSION}/`;
1616
const DOWNLOAD_FILE: string = `sandbox-client-${CONNECTOR_VERSION}-RELEASE-default.zip`;
1717
const DOWNLOAD_URL = DOWNLOAD_PATH + DOWNLOAD_FILE;
@@ -84,6 +84,7 @@ function getClientTemplatePath() {
8484
function buildClientConfig(origins: Array<string>, passThrough: boolean) {
8585
var template: string = fs.readFileSync(getClientTemplatePath()).toString();
8686
var clientConfig = JSON.parse(template);
87+
8788
if (!origins || origins.length == 0) {
8889
clientConfig.originMappings.push({
8990
from: '<ORIGIN HOSTNAME>',

0 commit comments

Comments
 (0)