mirror of
https://github.com/mountain-loop/yaak.git
synced 2025-12-23 22:48:55 -05:00
16 lines
526 B
JavaScript
16 lines
526 B
JavaScript
const path = require('path');
|
|
const fs = require('fs');
|
|
|
|
const version = process.env.YAAK_VERSION?.replace('v', '');
|
|
if (!version) {
|
|
throw new Error('YAAK_VERSION environment variable not set')
|
|
}
|
|
|
|
const tauriConfigPath = path.join(__dirname, '../src-tauri/tauri.conf.json');
|
|
const tauriConfig = JSON.parse(fs.readFileSync(tauriConfigPath, 'utf8'));
|
|
|
|
tauriConfig.version = version;
|
|
|
|
console.log('Writing version ' + version + ' to ' + tauriConfigPath)
|
|
fs.writeFileSync(tauriConfigPath, JSON.stringify(tauriConfig, null, 2));
|