Skip to content

Commit e7baf97

Browse files
committed
Update JbCommand.php
1 parent e932367 commit e7baf97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/JbCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ protected function copyFiles($subDirectory = '', $only = null) {
9595
$this->info('File [' . $subDirectory . '/' . $targetFilename . '] already exists');
9696
$this->info('Feel free to overwrite on new installs');
9797

98-
if ( $this->confirm( 'Overwrite?' ) ) {
98+
if ( $this->confirm( 'Overwrite?', true ) ) {
9999
$filesystem->copy($res_file->getRealPath(), $targetFullPath);
100100
} else {
101101
$this->line('Skipped');
@@ -114,7 +114,7 @@ protected function copyFile($file) {
114114
$this->info('File [' . $file . '] already exists');
115115
$this->info('Feel free to overwrite on new installs');
116116

117-
if ( $this->confirm( 'Overwrite?' ) ) {
117+
if ( $this->confirm( 'Overwrite?', true ) ) {
118118
$filesystem->copy(__DIR__ . '/stubs/' . $file, $targetFullPath);
119119
} else {
120120
$this->line('Skipped');

0 commit comments

Comments
 (0)