Skip to content

Commit

Permalink
Fixed path issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewMast committed May 3, 2021
1 parent 016cbe3 commit cc8063e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Program/Program.php
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,7 @@ public function save() {
public function saveFile($file, $contents) {
$path = $this->storagePath($file);

file_put_contents($this->storagePath($path), $contents);
file_put_contents($path, $contents);

return $path;
}
Expand Down

0 comments on commit cc8063e

Please sign in to comment.