--- drush_make.download.inc 2009-10-27 08:23:54.000000000 -0400 +++ drush_make.download.inc.new 2009-11-03 22:01:59.000000000 -0500 @@ -143,7 +143,7 @@ class DrushMakeDownload_Get extends Drus $filename = $this->project->tmp_path . '/' . $filename; // Download the project. if (!drush_make_shell_exec('wget %s -O %s', $this->project->download['url'], $filename)) { - drush_make_shell_exec('curl -O %s', $this->project->download['url'], $filename); + drush_make_shell_exec('curl -o %s %s', $filename, $this->project->download['url']); } if (file_exists($filename) || drush_get_context('DRUSH_SIMULATE')) { drush_log($this->project->name . ' downloaded from ' . $this->project->download['url'] . '.', 'ok');