mirror of
https://github.com/garraflavatra/rolens.git
synced 2024-11-21 22:18:59 +01:00
14 lines
295 B
JavaScript
14 lines
295 B
JavaScript
#!/usr/bin/node
|
|
|
|
// This script extracts the version number from wails.json in the project root
|
|
// and writes it to version.txt
|
|
|
|
const fs = require('fs');
|
|
|
|
fs.writeFileSync(
|
|
__dirname + '/version.txt',
|
|
JSON.parse(
|
|
fs.readFileSync(__dirname + '/../wails.json')
|
|
).info.productVersion
|
|
);
|