summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorZach Ahn <engineering@zachahn.com>2017-03-05 17:27:25 -0500
committerZach Ahn <engineering@zachahn.com>2017-03-05 21:07:48 -0500
commit49fc3ac01603626a53a2643b24e0805e0320e487 (patch)
treeeb375cb6688ba2bcb1121cf0182289c275e2985d /lib
parent656df074d4903abef9eac933cc2c28ec961f060b (diff)
downloadbundler-49fc3ac01603626a53a2643b24e0805e0320e487.tar.gz
Swap single to double quotes for standalone binstubs
Diffstat (limited to 'lib')
-rw-r--r--lib/bundler/templates/Executable.standalone8
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