lib/bin_install/shell.rb in bin_install-0.0.23 vs lib/bin_install/shell.rb in bin_install-0.0.24
- old
+ new
@@ -23,10 +23,10 @@
def self.append_to_profiles(value)
profile_paths.each do |path|
file = File.open(path, 'a+')
if file.read.include?(value)
- puts "Value already exist in #{path}. Skipping.".blue
+ puts "Value already exist in #{path}. Skipping file injection.".blue
else
puts "Writing to #{path}:\n#{value.to_s.purple}"
file << value.to_s
end