Skip to content
This repository has been archived by the owner on Feb 11, 2023. It is now read-only.

Commit

Permalink
Add nonce.js to list of files to zip
Browse files Browse the repository at this point in the history
  • Loading branch information
payton committed Dec 19, 2018
1 parent 92e8e8c commit 9ba0066
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ function googleConfiguration() {
}
}, function (err, result) {
config.JSON_EMAIL_LOOKUP = result.JSON_EMAIL_LOOKUP;
writeConfig(config, zip, ['config.json', 'index.js', 'auth.js']);
writeConfig(config, zip, ['config.json', 'index.js', 'auth.js', 'nonce.js']);
});
break;
case '3':
Expand Down Expand Up @@ -352,7 +352,7 @@ function oktaConfiguration() {
fs.writeFileSync('distributions/' + config.DISTRIBUTION + '/config.json', JSON.stringify(result, null, 4));

shell.cp('./authz/okta.js', './distributions/' + config.DISTRIBUTION + '/auth.js');
writeConfig(config, zip, ['config.json', 'index.js', 'auth.js']);
writeConfig(config, zip, ['config.json', 'index.js', 'auth.js', 'nonce.js']);
});
}

Expand Down Expand Up @@ -483,7 +483,7 @@ function auth0Configuration() {
fs.writeFileSync('distributions/' + config.DISTRIBUTION + '/config.json', JSON.stringify(result, null, 4));

shell.cp('./authz/auth0.js', './distributions/' + config.DISTRIBUTION + '/auth.js');
writeConfig(config, zip, ['config.json', 'index.js', 'auth.js']);
writeConfig(config, zip, ['config.json', 'index.js', 'auth.js', 'nonce.js']);
});
}

Expand Down

0 comments on commit 9ba0066

Please sign in to comment.