Skip to content

Commit

Permalink
Fix up load paths in exe
Browse files Browse the repository at this point in the history
  • Loading branch information
Emanuel Evans committed May 3, 2016
1 parent a3fed50 commit 2bb402a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions exe/circlemator
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
#!/usr/bin/env ruby
# frozen_string_literal: true
lib = File.expand_path('../../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'optparse'
require_relative '../lib/circlemator/build_canceler'
require_relative '../lib/circlemator/self_merger'
require_relative '../lib/circlemator/github_repo'
require_relative '../lib/circlemator/style_checker'
require 'circlemator/build_canceler'
require 'circlemator/self_merger'
require 'circlemator/github_repo'
require 'circlemator/style_checker'

options = {}
parser = OptionParser.new do |opts|
Expand Down

0 comments on commit 2bb402a

Please sign in to comment.