diff options
author | 0neGal <mail@0negal.com> | 2022-03-24 17:15:44 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2022-03-24 17:15:44 +0100 |
commit | 63fb961c1a3b5df509ee96711b6d489b40efb330 (patch) | |
tree | 75a1b27c8357ff9a1a88d13f85e5d2d6c98fc092 /src/cli.js | |
parent | 9573c62bf1dfde501af4bd92854adc335faca68b (diff) | |
download | Viper-63fb961c1a3b5df509ee96711b6d489b40efb330.tar.gz Viper-63fb961c1a3b5df509ee96711b6d489b40efb330.zip |
added --no-vp-updates
This overwrites viper.json and disables Viper updates, this is useful
when repackaging Viper for other formats we don't already support.
Diffstat (limited to 'src/cli.js')
-rw-r--r-- | src/cli.js | 21 |
1 files changed, 11 insertions, 10 deletions
@@ -43,18 +43,19 @@ async function init() { // --help menu/argument if (cli.hasSwitch("help")) { console.log(`options: - --help ${lang("cli.help.help")} - --debug ${lang("cli.help.debug")} - --version ${lang("cli.help.version")} + --help ${lang("cli.help.help")} + --debug ${lang("cli.help.debug")} + --version ${lang("cli.help.version")} - --cli ${lang("cli.help.cli")} - --update ${lang("cli.help.update")} - --updatevp ${lang("cli.help.updatevp")} - --setpath ${lang("cli.help.setpath")} + --cli ${lang("cli.help.cli")} + --update ${lang("cli.help.update")} + --updatevp ${lang("cli.help.updatevp")} + --setpath ${lang("cli.help.setpath")} + --no-vp-updates ${lang("cli.help.novpupdates")} - --installmod ${lang("cli.help.installmod")} - --removemod ${lang("cli.help.removemod")} - --togglemod ${lang("cli.help.togglemod")}`) + --installmod ${lang("cli.help.installmod")} + --removemod ${lang("cli.help.removemod")} + --togglemod ${lang("cli.help.togglemod")}`) // In the future --setpath should be able to understand // relative paths, instead of just absolute ones. exit(); |