File base.js changed (mode: 100644) (index 07d795c..c56cf3b) |
1 |
1 |
const shell = require("shelljs"), |
const shell = require("shelljs"), |
2 |
2 |
fs = require("fs"), |
fs = require("fs"), |
|
3 |
|
path = require("path"), |
3 |
4 |
ansi = require("ansi"), |
ansi = require("ansi"), |
4 |
|
cursor = ansi(process.stdout); |
|
|
5 |
|
cursor = ansi(process.stdout), |
|
6 |
|
homedir = require("os").homedir(), |
|
7 |
|
bashPath = path.join(homedir, ".bashrc"), |
|
8 |
|
exec = shell.exec, |
|
9 |
|
{ COPYFILE_EXCL } = fs.constants; |
|
10 |
|
|
|
11 |
|
function cloneRepo(url, dest) { |
|
12 |
|
exec(`git clone ${url} --depth=1 --single-branch ${dest}`); |
|
13 |
|
} |
|
14 |
|
|
|
15 |
|
function installFile(fileName) { |
|
16 |
|
const src = path.join(__dirname, fileName), |
|
17 |
|
dst = path.join(homedir, `.${fileName}`); |
|
18 |
|
|
|
19 |
|
fs.symlink(src, dst, (err) => { |
|
20 |
|
if (err) { |
|
21 |
|
if (err.code == "EEXIST") { |
|
22 |
|
console.log(`${fileName} already installed`); |
|
23 |
|
} else { |
|
24 |
|
throw err; |
|
25 |
|
} |
|
26 |
|
} else { |
|
27 |
|
console.log(`installing ${fileName}`); |
|
28 |
|
} |
|
29 |
|
}); |
|
30 |
|
} |
|
31 |
|
|
|
32 |
|
function sourceOnSession(scriptName) { |
|
33 |
|
const scriptPath = path.join(__dirname, scriptName); |
|
34 |
|
let bashRC = fs.readFileSync(bashPath, "utf8"); |
|
35 |
|
if (!bashRC.match(scriptName)) { |
|
36 |
|
console.log(`installing ${scriptName}`); |
|
37 |
|
bashRC += `\n. ${scriptPath}`; |
|
38 |
|
fs.writeFileSync(bashPath, bashRC); |
|
39 |
|
} else { |
|
40 |
|
console.log(`${scriptName} already installed`); |
|
41 |
|
} |
|
42 |
|
} |
5 |
43 |
|
|
6 |
44 |
module.exports = { |
module.exports = { |
|
45 |
|
sourceOnSession, |
|
46 |
|
installFile, |
|
47 |
|
cloneRepo, |
7 |
48 |
exec: shell.exec, |
exec: shell.exec, |
8 |
49 |
tryAndRunScript: function (name) { |
tryAndRunScript: function (name) { |
9 |
50 |
try { |
try { |
File install.js changed (mode: 100755) (index f6a8ff3..5052bd7) |
1 |
1 |
#!/usr/bin/env node |
#!/usr/bin/env node |
2 |
2 |
|
|
3 |
|
const fs = require("fs"), |
|
4 |
|
homedir = require("os").homedir(), |
|
5 |
|
path = require("path"), |
|
6 |
|
bashPath = path.join(homedir, ".bashrc"), |
|
7 |
|
scriptName = "marks_bashrc", |
|
8 |
|
exec = require("shelljs").exec, |
|
9 |
|
{ COPYFILE_EXCL } = fs.constants; |
|
|
3 |
|
const { exec, sourceOnSession, installFile, cloneRepo } = require( './base' ); |
10 |
4 |
|
|
11 |
5 |
exec("git status"); |
exec("git status"); |
12 |
|
sourceOnSession(scriptName); |
|
|
6 |
|
sourceOnSession("marks_bashrc"); |
13 |
7 |
const files = ["gitconfig", "vimrc", "editorconfig"]; |
const files = ["gitconfig", "vimrc", "editorconfig"]; |
14 |
8 |
for (let file of files) { |
for (let file of files) { |
15 |
9 |
installFile(file); |
installFile(file); |
16 |
10 |
} |
} |
17 |
11 |
|
|
18 |
|
clone("https://github.com/k-takata/minpac", "~/.vim/pack/minpac/opt/minpac"); |
|
|
12 |
|
cloneRepo("https://github.com/k-takata/minpac", "~/.vim/pack/minpac/opt/minpac"); |
19 |
13 |
|
|
20 |
|
function clone(url, dest) { |
|
21 |
|
exec(`git clone ${url} --depth=1 --single-branch ${dest}`); |
|
22 |
|
} |
|
23 |
|
|
|
24 |
|
function installFile(fileName) { |
|
25 |
|
const src = path.join(__dirname, fileName), |
|
26 |
|
dst = path.join(homedir, `.${fileName}`); |
|
27 |
|
|
|
28 |
|
fs.symlink(src, dst, (err) => { |
|
29 |
|
if (err) { |
|
30 |
|
if (err.code == "EEXIST") { |
|
31 |
|
console.log(`${fileName} already installed`); |
|
32 |
|
} else { |
|
33 |
|
throw err; |
|
34 |
|
} |
|
35 |
|
} else { |
|
36 |
|
console.log(`installing ${fileName}`); |
|
37 |
|
} |
|
38 |
|
}); |
|
39 |
|
} |
|
40 |
|
|
|
41 |
|
function sourceOnSession(scriptName) { |
|
42 |
|
const scriptPath = path.join(__dirname, scriptName); |
|
43 |
|
let bashRC = fs.readFileSync(bashPath, "utf8"); |
|
44 |
|
if (!bashRC.match(scriptName)) { |
|
45 |
|
console.log(`installing ${scriptName}`); |
|
46 |
|
bashRC += `\n. ${scriptPath}`; |
|
47 |
|
fs.writeFileSync(bashPath, bashRC); |
|
48 |
|
} else { |
|
49 |
|
console.log(`${scriptName} already installed`); |
|
50 |
|
} |
|
51 |
|
} |
|
52 |
|
|
|
53 |
|
////copyDotFiles(); |
|
54 |
|
|
|
55 |
|
function copyDotFiles() { |
|
56 |
|
const files = ["gitconfig", "vimrc", "editorconig"]; |
|
57 |
|
for (let file of files) { |
|
58 |
|
const src = path.join(__dirname, file), |
|
59 |
|
dst = path.join(homedir, `.${file}`); |
|
60 |
|
fs.copyFile(src, dst, COPYFILE_EXCL, (err) => { |
|
61 |
|
if (err) console.log(`${src} already installed`); |
|
62 |
|
else console.log(` ${src} -> ${dst}`); |
|
63 |
|
}); |
|
64 |
|
} |
|
65 |
|
} |
|