diff --git a/src/Program/Program.php b/src/Program/Program.php index f77cc2c..e79f22f 100644 --- a/src/Program/Program.php +++ b/src/Program/Program.php @@ -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; }