mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-16 22:46:03 +01:00
11 lines
349 B
JavaScript
11 lines
349 B
JavaScript
const fs = require('fs');
|
|
|
|
const version = process.env.TGT_RELEASE_VERSION;
|
|
const newVersion = version.replace('v', '');
|
|
|
|
const manifestFile = fs.readFileSync('fxmanifest.lua', { encoding: 'utf8' });
|
|
|
|
const newFileContent = manifestFile.replace(/\bversion\s+(.*)$/gm, `version '${newVersion}'`);
|
|
|
|
fs.writeFileSync('fxmanifest.lua', newFileContent);
|