summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorpushmatrix <daniel.beauchamp@gmail.com>2014-05-30 14:28:51 -0400
committerpushmatrix <daniel.beauchamp@gmail.com>2014-05-30 14:28:51 -0400
commitd3ccecb096821b2df3b492dd349e5c650929a591 (patch)
treebe217537e25758da23db80ccea82ce099bec930f /bin
parentc49b9bc5d47fe02d26836dee5034fe28490f0ebd (diff)
Don't start the dashing app when you run the bin file.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/dashing3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/dashing b/bin/dashing
index 97a7af5..cce9340 100755
--- a/bin/dashing
+++ b/bin/dashing
@@ -3,6 +3,7 @@ require "pathname"
bin_file = Pathname.new(__FILE__).realpath
$:.unshift File.expand_path("../../lib", bin_file)
-require 'dashing'
+require 'dashing/cli'
+require 'dashing/downloader'
Dashing::CLI.source_root(File.expand_path('../../templates', bin_file))
Dashing::CLI.start(ARGV)