Skip to content

Commit

Permalink
1.6.3: Remove -x param from uploader for VT1
Browse files Browse the repository at this point in the history
  • Loading branch information
unshame committed Oct 3, 2018
1 parent 9a5500a commit e7e27c1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vmb",
"version": "1.6.2",
"version": "1.6.3",
"description": "Vermintide Mod Builder",
"main": "vmb.js",
"bin": "vmb.js",
Expand Down
5 changes: 4 additions & 1 deletion scripts/tools/uploader.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,13 @@ async function uploadMod(toolsDir, modName, changenote, skip) {

// Path to .cfg
let uploaderParams = [
'-x',
'-c', '"' + cfgPath + '"'
];

if (config.get('gameNumber') === 2) {
uploaderParams.push('-x');
}

// Changenote
if (changenote) {
uploaderParams.push('-n');
Expand Down
2 changes: 1 addition & 1 deletion scripts/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = '1.6.2';
module.exports = '1.6.3';

0 comments on commit e7e27c1

Please sign in to comment.