diff options
author | Zach Ahn <engineering@zachahn.com> | 2017-03-05 17:27:25 -0500 |
---|---|---|
committer | Zach Ahn <engineering@zachahn.com> | 2017-03-05 21:07:48 -0500 |
commit | 49fc3ac01603626a53a2643b24e0805e0320e487 (patch) | |
tree | eb375cb6688ba2bcb1121cf0182289c275e2985d /lib | |
parent | 656df074d4903abef9eac933cc2c28ec961f060b (diff) | |
download | bundler-49fc3ac01603626a53a2643b24e0805e0320e487.tar.gz |
Swap single to double quotes for standalone binstubs
Diffstat (limited to 'lib')
-rw-r--r-- | lib/bundler/templates/Executable.standalone | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/bundler/templates/Executable.standalone b/lib/bundler/templates/Executable.standalone index c114afe337..af56385200 100644 --- a/lib/bundler/templates/Executable.standalone +++ b/lib/bundler/templates/Executable.standalone @@ -6,9 +6,9 @@ # this file is here to facilitate running it. # -require 'pathname' +require "pathname" path = Pathname.new(__FILE__) -$:.unshift File.expand_path '../<%= standalone_path %>', path.realpath +$:.unshift File.expand_path "../<%= standalone_path %>", path.realpath -require 'bundler/setup' -load File.expand_path '../<%= executable_path %>', path.realpath +require "bundler/setup" +load File.expand_path "../<%= executable_path %>", path.realpath |