Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up gitignore after running configure script #151

Merged
merged 2 commits into from
Mar 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions configure.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,31 @@ function replace_in_file( string $file, array $replacements ): void {
);
}

/**
* Replace a section of a file, including the start and end delimeters and trailing whitespace.
*
* @param string $file Filename.
* @param string $start Start string included in replacement.
* @param string $end End string included in replacement.
* @param string $replace String to replace content with.
*/
function replace_section_in_file( string $file, string $start, string $end, string $replace = '' ) {
$contents = file_get_contents( $file );

if ( empty( $contents ) ) {
return;
}

$start = preg_quote( $start, '/' );
$end = preg_quote( $end, '/' );
$regex = '/' . $start . '.*?' . $end . '\s*/s';
$result = preg_replace( $regex, $replace, $contents );

if ( $result !== $contents ) {
file_put_contents( $file, $result );
}
}

function remove_readme_paragraphs( string $file ): void {
$contents = file_get_contents( $file );

Expand Down Expand Up @@ -795,6 +820,9 @@ function install_plugin( array $plugin_data, bool $prompt, &$installed_plugins )
]
);

// Clean up .gitignore.
replace_section_in_file( '.gitignore', '# BEGIN DELETE AFTER INSTALL #', '# END DELETE AFTER INSTALL #' );

if ( confirm( 'Let this script delete itself?', true ) ) {
delete_files(
[
Expand Down