bin/envoy in envoy-proxy-0.2.3 vs bin/envoy in envoy-proxy-1.0.0

- old
+ new

@@ -1,11 +1,13 @@ #! /usr/bin/env ruby # -*- mode: ruby -*- begin require 'envoy/client/command' + Envoy::Client::Command.new.run(ARGV) rescue LoadError path = File.expand_path '../../lib', __FILE__ $:.unshift path if File.directory?(path) require 'envoy/client/command' + Envoy::Client::Command.new.run(ARGV) end