-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DB-1369: Added support to specify profile at the time of installation.
- Loading branch information
1 parent
4c3eb3a
commit 24e3338
Showing
2 changed files
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -238,6 +238,7 @@ public function copyCiFiles($ci_provider, $created_folder, $cms_version, $ci_tem | |
* @option template-repository Composer repository if package is hosted on a private registry or url to git. | ||
* @option ci-template Git repo that contains the CI scripts that will be copied if there is no ci in the source project. | ||
* @option clu-cron-pattern Specify a cron pattern to override the given CI provider's clu task schedule, if applicable. For example, '0 0 * * 1' to run once a week at midnight on monday. | ||
* @option profile The profile to be used at the time of the installation. | ||
*/ | ||
public function createProject( | ||
$source, | ||
|
@@ -264,6 +265,7 @@ public function createProject( | |
'template-repository' => '', | ||
'ci-template' => '[email protected]:pantheon-systems/tbt-ci-templates.git', | ||
'clu-cron-pattern' => '', | ||
'profile' => 'standard' | ||
]) | ||
{ | ||
$this->warnAboutOldPhp(); | ||
|