|
@@ -4,40 +4,40 @@
|
|
|
* @author Alexander Rose <alexander.rose@weirdbyte.de>
|
|
|
*/
|
|
|
|
|
|
-const git = require('simple-git')
|
|
|
-const path = require('path')
|
|
|
-const fs = require("fs")
|
|
|
-const fse = require("fs-extra")
|
|
|
+const git = require('simple-git');
|
|
|
+const path = require('path');
|
|
|
+const fs = require("fs");
|
|
|
+const fse = require("fs-extra");
|
|
|
|
|
|
-const remoteUrl = "https://github.com/molstar/molstar.github.io.git"
|
|
|
-const buildDir = path.resolve(__dirname, '../build/')
|
|
|
-const deployDir = path.resolve(buildDir, 'deploy/')
|
|
|
-const localPath = path.resolve(deployDir, 'molstar.github.io/')
|
|
|
+const remoteUrl = "https://github.com/molstar/molstar.github.io.git";
|
|
|
+const buildDir = path.resolve(__dirname, '../build/');
|
|
|
+const deployDir = path.resolve(buildDir, 'deploy/');
|
|
|
+const localPath = path.resolve(deployDir, 'molstar.github.io/');
|
|
|
|
|
|
function log(command, stdout, stderr) {
|
|
|
if (command) {
|
|
|
- console.log('\n###', command)
|
|
|
- stdout.pipe(process.stdout)
|
|
|
- stderr.pipe(process.stderr)
|
|
|
+ console.log('\n###', command);
|
|
|
+ stdout.pipe(process.stdout);
|
|
|
+ stderr.pipe(process.stderr);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
function copyViewer() {
|
|
|
- console.log('\n###', 'copy viewer files')
|
|
|
- const viewerBuildPath = path.resolve(buildDir, '../build/viewer/')
|
|
|
- const viewerDeployPath = path.resolve(localPath, 'viewer/')
|
|
|
- fse.copySync(viewerBuildPath, viewerDeployPath, { overwrite: true })
|
|
|
+ console.log('\n###', 'copy viewer files');
|
|
|
+ const viewerBuildPath = path.resolve(buildDir, '../build/viewer/');
|
|
|
+ const viewerDeployPath = path.resolve(localPath, 'viewer/');
|
|
|
+ fse.copySync(viewerBuildPath, viewerDeployPath, { overwrite: true });
|
|
|
}
|
|
|
|
|
|
if (!fs.existsSync(localPath)) {
|
|
|
- console.log('\n###', 'create localPath')
|
|
|
- fs.mkdirSync(localPath, { recursive: true })
|
|
|
+ console.log('\n###', 'create localPath');
|
|
|
+ fs.mkdirSync(localPath, { recursive: true });
|
|
|
}
|
|
|
|
|
|
process.chdir(localPath);
|
|
|
|
|
|
if (!fs.existsSync(path.resolve(localPath, '.git/'))) {
|
|
|
- console.log('\n###', 'clone repository')
|
|
|
+ console.log('\n###', 'clone repository');
|
|
|
git()
|
|
|
.outputHandler(log)
|
|
|
.clone(remoteUrl, localPath)
|
|
@@ -45,9 +45,9 @@ if (!fs.existsSync(path.resolve(localPath, '.git/'))) {
|
|
|
.exec(copyViewer)
|
|
|
.add(['-A'])
|
|
|
.commit('updated viewer')
|
|
|
- .push()
|
|
|
+ .push();
|
|
|
} else {
|
|
|
- console.log('\n###', 'update repository')
|
|
|
+ console.log('\n###', 'update repository');
|
|
|
git()
|
|
|
.outputHandler(log)
|
|
|
.fetch(['--all'])
|
|
@@ -55,5 +55,5 @@ if (!fs.existsSync(path.resolve(localPath, '.git/'))) {
|
|
|
.exec(copyViewer)
|
|
|
.add(['-A'])
|
|
|
.commit('updated viewer')
|
|
|
- .push()
|
|
|
+ .push();
|
|
|
}
|