mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 15:06:02 +01:00
10 lines
345 B
JavaScript
10 lines
345 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) |