fix set-version

This commit is contained in:
antelle 2019-09-09 17:08:31 +02:00
parent 0953a29b4e
commit 574fa84f7d
1 changed files with 1 additions and 1 deletions

View File

@ -27,6 +27,6 @@ function processFile(name) {
throw new Error('No match found!');
}
data.version = version;
const newContent = JSON.stringify(data, null, 2) + '\n';
const newContent = JSON.stringify(data, null, 4) + '\n';
fs.writeFileSync(name, newContent, 'utf8');
}