Skip to content

Commit

Permalink
Tweak notices
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewjmead committed Sep 10, 2024
1 parent 66217f4 commit aa8c8db
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions app/Commands/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ public function handle()
);

if ($confirmed) {
info('Removing existing config file');
note('Removing existing config file');
File::delete($config_path);
} else {
exit(0);
}
}

info("Copying default config to `{$config_path}`");
note("Copying default config to `{$config_path}`");

try {
$bytesWritten = File::put($config_path, ConfigFile::default_configuration());
Expand All @@ -66,7 +66,9 @@ public function handle()
exit(1);
}

info('Config file successfully created! Checkout the docs here to learn what you need to change: https://github.com/andrewjmead/wpsites#configure-your-sites-directory');
info('Config file successfully created!');
note('Checkout the docs here to learn what you need to change: https://github.com/andrewjmead/wpsites#configure-your-sites-directory');

exit(0);
}
}
Binary file modified builds/wpsites
Binary file not shown.

0 comments on commit aa8c8db

Please sign in to comment.