diff options
author | Slack Coder <slackcoder@server.ky> | 2019-03-05 09:00:45 +0100 |
---|---|---|
committer | Slack Coder <slackcoder@server.ky> | 2019-03-05 09:00:45 +0100 |
commit | 280ab71ae8871f7a99d86ee7f5de02c8ee62f9ef (patch) | |
tree | 6a94295967aad1e5601fb69d1e0f999fd1f32b1e | |
parent | e201479bd69e868d5278f98ad8aca4bca2734a0a (diff) | |
download | slackware.com-client-280ab71ae8871f7a99d86ee7f5de02c8ee62f9ef.tar.xz |
Remove bad TODOs
-rwxr-xr-x | not-slackware.com | 4 |
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 |