Skip to content

Commit

Permalink
Fix GEM_PATH generation
Browse files Browse the repository at this point in the history
  • Loading branch information
inkel committed May 15, 2012
1 parent 705d789 commit d4b563f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/gs
Expand Up @@ -36,7 +36,7 @@ else
env = ENV.to_hash
env["GS_NAME"] = `basename $PWD`.strip
env["GEM_HOME"] = "#{ENV['PWD']}/.gs"
env["GEM_PATH"] = "#{ENV['PWD']}/.gs:`gem env path`"
env["GEM_PATH"] = "#{ENV['PWD']}/.gs:#{`gem env path`}"
env["PATH"] = "#{ENV['PWD']}/.gs/bin:#{ENV['PATH']}"

if ARGV.length > 0
Expand Down

0 comments on commit d4b563f

Please sign in to comment.