Skip to content

Commit

Permalink
Merge branch 'dev-4.3.2' into dev-4.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
HSunboy committed Nov 21, 2024
2 parents 0021be9 + 6465389 commit 21dadeb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion scripts/client/sign.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ if (!fs.existsSync(temp)) {
function getUniqKey() {
return new Date().getTime() + '_' + Math.random().toString(36).substring(2, 6);
}

console.log(
execSync('java -version', {
stdio: 'inherit'
})?.toString()
)
function walkSync(currentDirPath) {
const files = [];
fs.readdirSync(currentDirPath, { withFileTypes: true }).forEach(function (dirent) {
Expand Down
2 changes: 1 addition & 1 deletion scripts/clientDependencies/pullJre.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const path = require('path');

const platform = process.env.platform || 'mac';

const baseUrl = "https://obodc-front.oss-cn-beijing.aliyuncs.com/";
const baseUrl = "https://odc-front.oss-cn-beijing.aliyuncs.com/";

exports.run = async function () {
console.log('开始下载 Jre');
Expand Down
2 changes: 1 addition & 1 deletion scripts/clientDependencies/pullOBClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const urlMap = {
'linux_aarch64': `library/obclient/2_2_4/aarch64/obclient.tar.gz`,
}

const baseUrl = "https://obodc-front.oss-cn-beijing.aliyuncs.com/";
const baseUrl = "https://odc-front.oss-cn-beijing.aliyuncs.com/";

exports.run = async function () {
const uri = urlMap[process.env.platform];
Expand Down

0 comments on commit 21dadeb

Please sign in to comment.