summaryrefslogtreecommitdiff
path: root/lib/rubygems/package.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rubygems/package.rb')
-rw-r--r--lib/rubygems/package.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/rubygems/package.rb b/lib/rubygems/package.rb
index 6b87475c78..35acec0bbb 100644
--- a/lib/rubygems/package.rb
+++ b/lib/rubygems/package.rb
@@ -1,5 +1,5 @@
+# frozen_string_literal: true
# -*- coding: utf-8 -*-
-# frozen_string_literal: false
#--
# Copyright (C) 2004 Mauricio Julio Fernández Pradier
# See LICENSE.txt for additional licensing information.
@@ -59,7 +59,7 @@ class Gem::Package
if source
@path = source.path
- message << " in #{path}" if path
+ message = message + " in #{path}" if path
end
super message
@@ -383,7 +383,7 @@ EOM
FileUtils.chmod entry.header.mode, destination
end if entry.file?
- File.symlink(install_location(entry.header.linkname, destination_dir), destination) if entry.symlink?
+ File.symlink(entry.header.linkname, destination) if entry.symlink?
verbose destination
end