lib/build-tool/vcs/archive.rb in build-tool-0.4.3 vs lib/build-tool/vcs/archive.rb in build-tool-0.4.4

- old
+ new

@@ -87,17 +87,17 @@ end def fetch() # Check if the archive is already downloaded if File.exist? archive_local_path - logger.debug "Archive already fetched. Skipping." + logger.trace "Archive already fetched. Skipping." return 0 end # If the archive doesn't exist we assume the unpacked archive # should not exist too. if local_path_exist? - logger.debug "We fetch a new archive. Remove the old sources." + logger.trace "We fetch a new archive. Remove the old sources." FileUtils.rm_rf local_path if !$noop end # Create the directories parent dir. FileUtils.mkdir_p( File.dirname( local_path ) ) if !$noop