Removed unnecessary delay

This commit is contained in:
Peter Toth 2013-11-13 16:25:47 +01:00
parent c4a8bfb175
commit f5760d5e4c
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ class Metasploit3 < Msf::Post
leading_zeros = Math::log10(count).round
file_locations = []
count.times do |num|
Rex.sleep(datastore['DELAY'])
Rex.sleep(datastore['DELAY']) unless num == 0
begin
# This is an OSX module, so mkdir -p should be fine
cmd_exec("mkdir -p #{tmp_path}")