We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc120e7 commit 23ca7a1Copy full SHA for 23ca7a1
tool/jt.rb
@@ -2533,13 +2533,8 @@ def sforceimports
2533
2534
dest = "#{TRUFFLERUBY_DIR}/mxbuild/#{name}"
2535
FileUtils.rm_rf dest
2536
- if @ruby_name != @mx_env
2537
- # if `--name NAME` is passed, we want to copy so we don't end up with two symlinks
2538
- # to the same directory for the same --env but different names
2539
- FileUtils.cp_r(build_dir, dest)
2540
- else
2541
- File.symlink(build_dir, dest)
2542
- end
+ # NOTE: revert the changes and create a symlink if possible when [GR-53433] is resolved
+ FileUtils.cp_r(build_dir, dest)
2543
2544
# Symlink builds into version manager
2545
rbenv_root = ENV['RBENV_ROOT']
0 commit comments