diff options
author | Daniel Beauchamp <daniel.beauchamp@shopify.com> | 2014-05-30 14:35:34 -0400 |
---|---|---|
committer | Daniel Beauchamp <daniel.beauchamp@shopify.com> | 2014-05-30 14:35:34 -0400 |
commit | 9ee7f9edfb5cc213e0890d9dc248f0ffb7de6798 (patch) | |
tree | 4140cb3516a09aed594ae8be344a25b5d5b0030c /bin | |
parent | 81ef43d11ba961934df10b2d4ddd2e877021eebc (diff) | |
parent | d3ccecb096821b2df3b492dd349e5c650929a591 (diff) |
Merge pull request #366 from Shopify/prevent_double_load
Prevent running the scheduler twice.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/dashing | 3 |
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) |