mirror of
https://fast.feibisi.com/https://github.com/wp-cli/scaffold-command.git
synced 2025-10-03 16:51:08 +08:00
Don't need to pass /templates/
as the file path
This commit is contained in:
parent
88a21778d5
commit
c200f88fc0
1 changed files with 4 additions and 4 deletions
|
@ -306,7 +306,7 @@ class Scaffold_Command extends WP_CLI_Command {
|
|||
|
||||
if ( true === $unzip_result ) {
|
||||
$this->create_files( array(
|
||||
"$theme_path/{$theme_slug}/.editorconfig" => file_get_contents( self::get_template_path( "templates/.editorconfig" ) ),
|
||||
"$theme_path/{$theme_slug}/.editorconfig" => file_get_contents( self::get_template_path( '.editorconfig' ) ),
|
||||
), false );
|
||||
WP_CLI::success( "Created theme '{$data['theme_name']}'." );
|
||||
} else {
|
||||
|
@ -395,7 +395,7 @@ class Scaffold_Command extends WP_CLI_Command {
|
|||
$files_written = $this->create_files( array(
|
||||
$theme_style_path => self::mustache_render( 'child_theme.mustache', $data ),
|
||||
$theme_functions_path => self::mustache_render( 'child_theme_functions.mustache', $data ),
|
||||
"$theme_dir/.editorconfig" => file_get_contents( self::get_template_path( "/templates/.editorconfig" ) ),
|
||||
"$theme_dir/.editorconfig" => file_get_contents( self::get_template_path( '.editorconfig' ) ),
|
||||
), $force );
|
||||
$this->log_whether_files_written(
|
||||
$files_written,
|
||||
|
@ -553,7 +553,7 @@ class Scaffold_Command extends WP_CLI_Command {
|
|||
"$plugin_dir/Gruntfile.js" => self::mustache_render( 'plugin-gruntfile.mustache', $data ),
|
||||
"$plugin_dir/.gitignore" => self::mustache_render( 'plugin-gitignore.mustache', $data ),
|
||||
"$plugin_dir/.distignore" => self::mustache_render( 'plugin-distignore.mustache', $data ),
|
||||
"$plugin_dir/.editorconfig" => file_get_contents( self::get_template_path( "/templates/.editorconfig" ) ),
|
||||
"$plugin_dir/.editorconfig" => file_get_contents( self::get_template_path( '.editorconfig' ) ),
|
||||
), $force );
|
||||
|
||||
$this->log_whether_files_written(
|
||||
|
@ -773,7 +773,7 @@ class Scaffold_Command extends WP_CLI_Command {
|
|||
}
|
||||
$files_written[] = $file_name;
|
||||
|
||||
$wp_filesystem->copy( self::get_template_path( "/templates/$file" ), $file_name, true );
|
||||
$wp_filesystem->copy( self::get_template_path( $file ), $file_name, true );
|
||||
if ( 'install-wp-tests.sh' === $file ) {
|
||||
if ( ! $wp_filesystem->chmod( "$dir/$file", 0755 ) ) {
|
||||
WP_CLI::warning( "Couldn't mark 'install-wp-tests.sh' as executable." );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue