Skip to content

Commit

Permalink
Add beta- prefix to output of --version
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrsn committed Jun 6, 2017
1 parent e080074 commit aed670b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,4 @@ This tool expects a project to be sctructured as follows:
* make error logs shorter
* add task to create new project folder layout
* add PNGout as somehow part of the form conversion step. But make sure it's cleanly separated from XML processing step
* remove `beta-` prefix from `--version` output
2 changes: 1 addition & 1 deletion bin/medic-conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ switch(args[0]) {
console.log('Supported actions:\n ', supportedActions.join('\n '));
return process.exit(0);
case '--version':
console.log(require('../package.json').version);
console.log('beta-' + require('../package.json').version);
return process.exit(0);
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "medic-configurer-beta",
"version": "1.0.46",
"version": "1.0.47",
"description": "Configure Medic Mobile deployments",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit aed670b

Please sign in to comment.