mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-16 22:46:03 +01:00
9 lines
302 B
JavaScript
9 lines
302 B
JavaScript
const fxManifest = await Bun.file('./fxmanifest.lua').text();
|
|
|
|
let newVersion = process.env.TGT_RELEASE_VERSION;
|
|
newVersion = newVersion.replace('v', '')
|
|
|
|
const newFileContent = fxManifest.replace(/\bversion\s+(.*)$/gm, `version '${newVersion}'`);
|
|
|
|
await Bun.write('./fxmanifest.lua', newFileContent);
|