Skip to content

Commit

Permalink
Remove leftover code. Re-build.
Browse files Browse the repository at this point in the history
  • Loading branch information
nikola-bleech committed Jun 25, 2019
1 parent f16af61 commit 5cef1f7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
Binary file modified bin/vh-config
Binary file not shown.
12 changes: 1 addition & 11 deletions vh-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,11 @@ const args = process.argv
const version = {
major: 0,
minor: 1,
patch: 1
patch: 2
}

// Options
let options = {
noAppend: 0,
single: 0,
force: 0
}

Expand Down Expand Up @@ -171,12 +169,6 @@ if (args.length < 2) {
} else if (args.indexOf('-h') != -1 || args.indexOf('--help') != -1) {
printHelp()
end()
// -n, --no-append
} else if (args.indexOf('-n') != -1 || args.indexOf('--no-append') != -1) {
options.noAppend = 1
// -s, --single
} else if (args.indexOf('-s') != -1 || args.indexOf('--single') != -1) {
options.noAppend = 1
// -f, --force
} else if (args.indexOf('-f') != -1 || args.indexOf('--force') != -1) {
options.force = 1
Expand Down Expand Up @@ -222,8 +214,6 @@ const configCreate = () => {
// Output file name
const fileName = `${projectName}.conf`

console.log(fileName)

// Create symlink
const symLn = ()=> {
// Change the process working dir
Expand Down

0 comments on commit 5cef1f7

Please sign in to comment.