Make destination required

This commit is contained in:
wchen-r7 2016-08-18 15:56:16 -05:00
parent e154aafaaa
commit b081dbf703
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ class MetasploitModule < Msf::Post
register_options(
[
OptString.new('DESTINATION', [false, 'The destination path']),
OptString.new('DESTINATION', [true, 'The destination path']),
OptString.new('SOURCE', [true, 'The directory or file to compress'])
], self.class)
end