diff --git a/fserver.drush.inc b/fserver.drush.inc
index 65ba088..fbd97be 100755
--- a/fserver.drush.inc
+++ b/fserver.drush.inc
@@ -290,9 +290,9 @@ class FserverProject {
       $files = file_scan_directory($this->backend->path, '/.info$/');
       foreach ($files as $path => $file) {
         // @TODO: Parse the info file or not?
-        $info_file = file_get_contents($file->filename);
+        $info_file = file_get_contents($path);
         $info_file .= $packaging;
-        file_put_contents($file->filename, $info_file);
+        file_put_contents($path, $info_file);
       }
     }
   }
