Skip to content

Commit

Permalink
Move usage script to more obvious place
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrsn committed May 29, 2017
1 parent 2f70d56 commit 1bee2f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/medic-conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node

const usage = require('../src/cli/utils').usage;
const usage = require('../src/cli/usage');

if(process.argv.length < 4) {
usage();
Expand Down
2 changes: 1 addition & 1 deletion src/cli/utils.js → src/cli/usage.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports.usage = () => {
module.exports = () => {
console.log(`
# This script will update and upload all of a particular project configuration
# to a particular instance.
Expand Down

0 comments on commit 1bee2f3

Please sign in to comment.