Skip to content

Commit

Permalink
Merge pull request #4 from paulboco/patch-1
Browse files Browse the repository at this point in the history
Fix typo preventing file write.
  • Loading branch information
Laracasts committed Mar 25, 2015
2 parents abd3c37 + f134208 commit a23ca6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Extensions/IntegrationTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -423,9 +423,9 @@ protected function logLatestContent()

if (! is_dir($outputDir)) {
mkdir($outputDir, 0777, true);

file_put_contents("{$outputDir}/output.txt", $this->content());
}

file_put_contents("{$outputDir}/output.txt", $this->content());
}

/**
Expand Down

0 comments on commit a23ca6a

Please sign in to comment.