Skip to content

Commit

Permalink
fix: #56 copy directory failed
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunthegeek committed Nov 16, 2024
1 parent 38c7962 commit 64acabf
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 136 deletions.
133 changes: 0 additions & 133 deletions .github/workflows/laravel-9.yml

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# Laravel Docker

[![codecov](https://codecov.io/gh/laravel-fans/laravel-docker/branch/main/graph/badge.svg)](https://codecov.io/gh/laravel-fans/laravel-docker)
[![Laravel 8](https://github.com/laravel-fans/laravel-docker/workflows/Laravel%208/badge.svg)](https://github.com/laravel-fans/laravel-docker/actions/workflows/laravel-8.yml)
[![Laravel 9](https://github.com/laravel-fans/laravel-docker/workflows/Laravel%209/badge.svg)](https://github.com/laravel-fans/laravel-docker/actions/workflows/laravel-9.yml)
[![Laravel 10](https://github.com/laravel-fans/laravel-docker/workflows/Laravel%2010/badge.svg)](https://github.com/laravel-fans/laravel-docker/actions/workflows/laravel-10.yml)
[![Laravel 11](https://github.com/laravel-fans/laravel-docker/workflows/Laravel%2011/badge.svg)](https://github.com/laravel-fans/laravel-docker/actions/workflows/laravel-11.yml)

Full Laravel production environment for Docker.

Expand Down
2 changes: 1 addition & 1 deletion src/DockerPublishCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function handle()
{
$basePath = $this->laravel->basePath();

File::copyDirectory(__DIR__ . '/stubs', $basePath, FilesystemIterator::CURRENT_MODE_MASK);
File::copyDirectory(__DIR__ . '/stubs', $basePath);

// TODO: no testable, can not mock
$phpVersion = $this->option('php-version') ?? PHP_MAJOR_VERSION . '.' . PHP_MINOR_VERSION;
Expand Down

0 comments on commit 64acabf

Please sign in to comment.