Commit aff4e5f 1 parent 2921b07 commit aff4e5f Copy full SHA for aff4e5f
File tree 5 files changed +8
-7
lines changed
5 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ protected function invokeHook($hook) {
153
153
$ result = $ this ->taskExecStack ()
154
154
->exec ($ this ->getConfigValue ("target-hooks. $ hook.command " ))
155
155
->dir ($ this ->getConfigValue ("target-hooks. $ hook.dir " ))
156
- ->interactive ()
156
+ ->detectInteractive ()
157
157
->printOutput (TRUE )
158
158
->printMetadata (FALSE )
159
159
->stopOnFail ()
@@ -196,7 +196,7 @@ protected function executeCommandInDrupalVm($command) {
196
196
$ result = $ this ->taskExecStack ()
197
197
->exec ("vagrant exec --tty ' $ command' " )
198
198
->dir ($ this ->getConfigValue ('repo.root ' ))
199
- ->interactive ( TRUE )
199
+ ->detectInteractive ( )
200
200
->setVerbosityThreshold (VerbosityThresholdInterface::VERBOSITY_VERBOSE )
201
201
->run ();
202
202
Original file line number Diff line number Diff line change @@ -107,7 +107,8 @@ protected function updateAlias() {
107
107
* @param int $start_pos
108
108
* The position of the opening bracket in the string that should be matched.
109
109
*
110
- * @return int|null
110
+ * @return int|NULL
111
+ *
111
112
*/
112
113
protected function getClosingBracketPosition ($ contents , $ start_pos ) {
113
114
$ brackets = ['{ ' ];
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ public function build() {
104
104
105
105
if ($ this ->getConfig ()->has ('simplesamlphp ' ) && $ this ->getConfigValue ('simplesamlphp ' )) {
106
106
$ result = $ this ->taskExec ($ this ->getConfigValue ('composer.bin ' ) . "blt simplesamlphp:build:config " )
107
- ->interactive ()
107
+ ->detectInteractive ()
108
108
->dir ($ this ->getConfigValue ('repo.root ' ))
109
109
->run ();
110
110
}
@@ -122,7 +122,7 @@ public function build() {
122
122
public function composerInstall () {
123
123
$ result = $ this ->taskExec ("export COMPOSER_EXIT_ON_PATCH_FAILURE=1; composer install --ansi --no-interaction " )
124
124
->dir ($ this ->getConfigValue ('repo.root ' ))
125
- ->interactive ()
125
+ ->detectInteractive ()
126
126
->setVerbosityThreshold (VerbosityThresholdInterface::VERBOSITY_VERBOSE )
127
127
->run ();
128
128
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ function ($string) {
51
51
$ task ->option ('config-dir ' , $ this ->getConfigValue ("cm.core.dirs. $ cm_core_key.path " ));
52
52
}
53
53
54
- $ result = $ task ->interactive ()->run ();
54
+ $ result = $ task ->detectInteractive ()->run ();
55
55
if ($ result ->wasSuccessful ()) {
56
56
$ this ->getConfig ()->set ('state.drupal.installed ' , TRUE );
57
57
}
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ public function wizardInstallDrupal() {
42
42
$ bin = $ this ->getConfigValue ('composer.bin ' );
43
43
$ this ->executor
44
44
->execute ("$ bin/blt setup " )
45
- ->interactive ( TRUE )
45
+ ->detectInteractive ( )
46
46
->run ();
47
47
}
48
48
}
You can’t perform that action at this time.
0 commit comments