Skip to content

Commit

Permalink
fix(version): show proper version number in cli
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinr committed Oct 29, 2021
1 parent 69d54f4 commit f89db20
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions index.js
Expand Up @@ -6,12 +6,11 @@ const co = require("co");
const prompt = require("co-prompt");
const { Octokit } = require("@octokit/rest");
const { throttling } = require("@octokit/plugin-throttling");

const { importFile } = require("./import.js");
const { exportIssues } = require("./export.js");

program
.version("2.0.0")
.version(require('./package.json').version)
.arguments("[file]")
.option(
"-g, --github_enterprise [https://api.github.my-company.com]",
Expand Down

0 comments on commit f89db20

Please sign in to comment.