Skip to content
This repository was archived by the owner on Mar 7, 2018. It is now read-only.

Commit d3ccecb

Browse files
committed
Don't start the dashing app when you run the bin file.
1 parent c49b9bc commit d3ccecb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

bin/dashing

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ require "pathname"
33
bin_file = Pathname.new(__FILE__).realpath
44
$:.unshift File.expand_path("../../lib", bin_file)
55

6-
require 'dashing'
6+
require 'dashing/cli'
7+
require 'dashing/downloader'
78
Dashing::CLI.source_root(File.expand_path('../../templates', bin_file))
89
Dashing::CLI.start(ARGV)

lib/dashing.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
require 'dashing/app'
44

55
module Dashing
6-
end
6+
end

0 commit comments

Comments
 (0)