function hackedProjectWebDevDownloader::get_final_destination in Hacked! 7.2
Returns the final destination of the unpacked project.
Return value
string The unpacked project's path.
Overrides hackedProjectWebDownloader::get_final_destination
File
- includes/
hackedProjectWebDevDownloader.inc, line 186
Class
- hackedProjectWebDevDownloader
- Downloads the dev version of a project.
Code
function get_final_destination() {
// Simply return the original destination as Git's cloning already provides
// an unpacked project.
return $this
->get_destination();
}