Skip to content
This repository has been archived by the owner on Jan 22, 2019. It is now read-only.

Commit

Permalink
Subdirectories break the coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
athieriot committed May 23, 2013
1 parent fa243c4 commit da44df4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/commands.coffee
Expand Up @@ -11,7 +11,7 @@ help = (fallback) ->
#
# TODO: See if we can make that cleaner
list = {
pulls: require('./commands/pulls'),
pulls: require('./pulls'),
help: {
name: "Help"
description: "Display a list of available commands",
Expand Down
4 changes: 2 additions & 2 deletions lib/commands/pulls.coffee → lib/pulls.coffee
@@ -1,12 +1,12 @@
Configuration = require '../configuration'
Configuration = require './configuration'

Async = require 'async'
Moment = require 'moment'
_ = require('underscore')._

GitHubApi = require 'github'

Utils = require '../utils'
Utils = require './utils'

@github = new GitHubApi { version: "3.0.0", debug: Configuration.get("github").debug }
@github.authenticate { type: "oauth", token: Configuration.get("github").token }
Expand Down

0 comments on commit da44df4

Please sign in to comment.