Compare commits

..

No commits in common. "f11970fee30ebaae38297a7da71505052c9a5ff0" and "b2997e6c179f0372822b99aac85152781b09e8e6" have entirely different histories.

2 changed files with 3 additions and 8 deletions

View File

@ -1,3 +0,0 @@
#!/bin/sh
where="$1"
find "$where" -perm +111 -a -type f -exec xattr -d com.apple.quarantine {} \;

View File

@ -50,11 +50,9 @@ ARTISTS.lines.each do |artist|
puts "Creating #{dest}"
FileUtils.mkdir_p(dest)
mp3_files.each do |mp3_file|
unless File.exist?("#{dest}/#{File.basename(mp3_file)}")
puts "Copying #{mp3_file} -> #{dest}"
FileUtils.cp(mp3_file, dest)
system("sync", DEST)
end
puts "Copying #{mp3_file} -> #{dest}"
FileUtils.cp(mp3_file, dest)
system("sync", DEST)
end
end
end