mirror of
https://github.com/vrcx-team/VRCX.git
synced 2026-04-06 00:32:02 +02:00
60 lines
1.9 KiB
JavaScript
60 lines
1.9 KiB
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
const { getArchAndPlatform } = require('./utils');
|
|
|
|
const rootDir = path.join(__dirname, '..');
|
|
const versionFilePath = path.join(rootDir, 'Version');
|
|
const buildDir = path.join(rootDir, 'build');
|
|
|
|
let version = '';
|
|
try {
|
|
version = fs.readFileSync(versionFilePath, 'utf8').trim();
|
|
// if (!version.includes('T')) {
|
|
// // Remove dots only from Stable version
|
|
// version = version.replaceAll('.', '');
|
|
// }
|
|
} catch (err) {
|
|
console.error('Error reading Version file:', err);
|
|
process.exit(1);
|
|
}
|
|
|
|
function renameBuild(arch, platform) {
|
|
if (platform === 'linux') {
|
|
const oldAppImage = path.join(buildDir, `VRCX_Version.AppImage`);
|
|
const newAppImage = path.join(
|
|
buildDir,
|
|
`VRCX_${version}_${arch}.AppImage`
|
|
);
|
|
try {
|
|
if (fs.existsSync(oldAppImage)) {
|
|
fs.renameSync(oldAppImage, newAppImage);
|
|
console.log(`Renamed: ${oldAppImage} -> ${newAppImage}`);
|
|
} else {
|
|
console.log(`File not found: ${oldAppImage}`);
|
|
}
|
|
} catch (err) {
|
|
console.error('Error renaming files:', err);
|
|
process.exit(1);
|
|
}
|
|
} else if (platform === 'darwin') {
|
|
const oldDmg = path.join(buildDir, `VRCX_Version.dmg`);
|
|
const newDmg = path.join(buildDir, `VRCX_${version}_${arch}.dmg`);
|
|
try {
|
|
if (fs.existsSync(oldDmg)) {
|
|
fs.renameSync(oldDmg, newDmg);
|
|
console.log(`Renamed: ${oldDmg} -> ${newDmg}`);
|
|
} else {
|
|
console.log(`File not found: ${oldDmg}`);
|
|
}
|
|
} catch (err) {
|
|
console.error('Error renaming files:', err);
|
|
process.exit(1);
|
|
}
|
|
} else {
|
|
console.log('No renaming needed for this platform.');
|
|
}
|
|
}
|
|
|
|
const { arch, platform } = getArchAndPlatform();
|
|
renameBuild(arch, platform);
|