Skip to content

Commit a741991

Browse files
fixed problem with .env setup
1 parent af09032 commit a741991

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exec/setup.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
function get_input($prompt, $default = null)
44
{
5-
$default = ($default) ? "[$default]" : '';
6-
$input = readline("$prompt $default: ");
5+
$default_show = ($default) ? "[$default]" : '';
6+
$input = readline("$prompt $default_show: ");
77
return (trim($input) == "") ? $default : $input;
88
}
99

0 commit comments

Comments
 (0)