Skip to content

Commit

Permalink
Fixes from MR comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
singularo committed Oct 16, 2017
1 parent 37b62e7 commit 0d4a46b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RoboFileBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ public function __construct() {
*
* I.e. return 'some_profile'.
*/
function getDrupalProfile() {
protected function getDrupalProfile() {
$profile = getenv('SHEPHERD_INSTALL_PROFILE');
if (empty($profile)) {
echo "Install profile environment variable is not set.\n";
$this->say("Install profile environment variable is not set.\n");
exit(1);
}
return $profile;
Expand Down

0 comments on commit 0d4a46b

Please sign in to comment.