You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WP_CLI::error( "The shell binary '{$shell_binary}' is not valid. You can override the shell to be used through the WP_CLI_CUSTOM_SHELL environment variable." );
196
213
}
197
214
215
+
$prompt = escapeshellarg( $prompt );
216
+
$history_path = escapeshellarg( $history_path );
217
+
198
218
$is_ksh = self::is_ksh_shell( $shell_binary );
199
219
$shell_binary = escapeshellarg( $shell_binary );
200
220
@@ -331,4 +351,19 @@ private function get_recursive_mtime( $path ) {
331
351
332
352
return$mtime;
333
353
}
354
+
355
+
/**
356
+
* Detect if STDIN is an interactive terminal.
357
+
*
358
+
* @return bool True if interactive, false otherwise.
0 commit comments