mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 09:24:17 +01:00
Remove the test file comparison implementation
This commit is contained in:
parent
36697f630e
commit
a8ca2300c4
24
bin/test.rb
24
bin/test.rb
@ -1,24 +0,0 @@
|
|||||||
require "fileutils"
|
|
||||||
require "../lib/trucolor"
|
|
||||||
|
|
||||||
UPSTREAM = "/Home/new-start/dotfiles"
|
|
||||||
|
|
||||||
Dir.glob(ENV["HOME"] + UPSTREAM + "/**/*", File::FNM_DOTMATCH).each do |file|
|
|
||||||
next if File.directory?(file)
|
|
||||||
puts file
|
|
||||||
a = file.sub(UPSTREAM, "")
|
|
||||||
if File.exists?(a) then
|
|
||||||
print "Are the two files identical? "
|
|
||||||
identical = FileUtils.compare_file(file, a)
|
|
||||||
print identical
|
|
||||||
print "\n"
|
|
||||||
|
|
||||||
if not identical and not file.include?(".jpg")
|
|
||||||
puts `grep -nFxvf #{file} #{a}`
|
|
||||||
puts `grep -nFxvf #{a} #{file}`
|
|
||||||
end
|
|
||||||
|
|
||||||
else
|
|
||||||
puts "a did not exist."
|
|
||||||
end
|
|
||||||
end
|
|
Loading…
Reference in New Issue
Block a user