aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xnot-slackware.com4
1 files changed, 0 insertions, 4 deletions
diff --git a/not-slackware.com b/not-slackware.com
index c08abf3..8c4ba65 100755
--- a/not-slackware.com
+++ b/not-slackware.com
@@ -2,7 +2,6 @@
require "time"
-# TODO: Create other commands
# TODO: List changelog entries per package
# TODO: List mirrors
# TODO: List removed packages mentioned in changelog
@@ -311,15 +310,12 @@ class Local
if File.extname(file_name) == ".txz" || file_name == CHECKSUMS
err = self.gpg_verify(local_file_path_sig)
- puts "unlinking after gpg verification" if err && File.exist?(local_file_path)
File.unlink(local_file_path) if err && File.exist?(local_file_path)
return err if err
end
- puts file_name
unless file_name == CHECKSUMS
checksum_path = File.join(CACHE, CHECKSUMS)
err = self.md5sum_verify(checksum_path, local_file_path)
- puts "unlinking after md5sum verification" if err && File.exist?(local_file_path)
File.unlink(local_file_path) if err && File.exist?(local_file_path)
return err if err
end