mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
copy version file to piskel website
This commit is contained in:
parent
f74b081fad
commit
8c815f320d
@ -6,6 +6,8 @@ const fse = require('fs-extra');
|
|||||||
const PISKEL_PATH = path.resolve(__dirname, '..');
|
const PISKEL_PATH = path.resolve(__dirname, '..');
|
||||||
const PISKELAPP_PATH = path.resolve(__dirname, '../../piskel-website');
|
const PISKELAPP_PATH = path.resolve(__dirname, '../../piskel-website');
|
||||||
|
|
||||||
|
var pjson = require('../package.json');
|
||||||
|
|
||||||
// Callbacks sorted by call sequence.
|
// Callbacks sorted by call sequence.
|
||||||
function onCopy(err) {
|
function onCopy(err) {
|
||||||
if (err) {
|
if (err) {
|
||||||
@ -52,6 +54,17 @@ function onDeleteTempPartial(err) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
console.log('Temporary main partial deleted...');
|
console.log('Temporary main partial deleted...');
|
||||||
|
|
||||||
|
fs.writeFile(path.resolve(PISKELAPP_PATH, "static/editor/VERSION"), pjson.version, onVersionFileCreated);
|
||||||
|
}
|
||||||
|
|
||||||
|
function onVersionFileCreated(err) {
|
||||||
|
if (err) {
|
||||||
|
console.error('Failed to create temporary main partial...');
|
||||||
|
return console.error(err);
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log('Version file created...');
|
||||||
console.log('Finished!');
|
console.log('Finished!');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user