aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/file
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-03 09:55:05 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-03 09:55:05 +0000
commit35d7ae85eef59c2e50f8cd086b6baf48feb72fb9 (patch)
tree26bdb8350b2d1d5fc613e395aa1998730f549269 /spec/ruby/core/file
parent07a5db2c3223e5fa706c5b7040ca28e2bca44ca0 (diff)
downloadruby-35d7ae85eef59c2e50f8cd086b6baf48feb72fb9.tar.gz
Use /bin/echo instead of shell builtin echo
builtin echo of Solaris 10's sh doesn't expand `~`. https://rubyci.org/logs/rubyci.s3.amazonaws.com/unstable10x/ruby-trunk/log/20181203T061807Z.fail.html.gz git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66160 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec/ruby/core/file')
-rw-r--r--spec/ruby/core/file/expand_path_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/file/expand_path_spec.rb b/spec/ruby/core/file/expand_path_spec.rb
index b7363fefa9..0b48c64154 100644
--- a/spec/ruby/core/file/expand_path_spec.rb
+++ b/spec/ruby/core/file/expand_path_spec.rb
@@ -89,7 +89,7 @@ describe "File.expand_path" do
platform_is_not :windows do
before do
@var_home = ENV['HOME'].chomp('/')
- @db_home = `echo ~#{ENV['USER']}`.chomp
+ @db_home = `/bin/echo ~#{ENV['USER']}`.chomp
end
# FIXME: these are insane!