diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2019-10-17 17:19:23 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2019-10-17 17:21:36 -0700 |
commit | 46161bb40a142052ffa8a0030a91c10c6f50fc7d (patch) | |
tree | cc693cd14e43e13c6db1523616c4b5d0aa78ffbe /Gemfile | |
parent | 33dc27f56dcda80a0ee060e7e2ae4001106439b1 (diff) | |
download | chef-46161bb40a142052ffa8a0030a91c10c6f50fc7d.tar.gz |
don't use string interpolation for eval_gemfile
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -76,7 +76,7 @@ instance_eval(ENV["GEMFILE_MOD"]) if ENV["GEMFILE_MOD"] # If you want to load debugging tools into the bundle exec sandbox, # add these additional dependencies into Gemfile.local -eval_gemfile(__FILE__ + ".local") if File.exist?(__FILE__ + ".local") +eval_gemfile("./Gemfile.local") if File.exist?("./Gemfile.local") # These lines added for Windows development only. # For FFI to call into PowerShell we need the binaries and assemblies located |