Skip to content

Commit

Permalink
change move to copy in copy file action
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Gaal committed Feb 18, 2022
1 parent c06b645 commit 701f8a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "regnerisch/laravel-beyond",
"type": "library",
"license": "ISC",
"version": "2.3.1",
"version": "2.3.2",
"autoload": {
"psr-4": {
"Regnerisch\\LaravelBeyond\\": "src/"
Expand Down
2 changes: 1 addition & 1 deletion src/Actions/CopyFileAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function execute(string $srcPath, string $targetPath)
true
);

$fs->move(
$fs->copy(
$srcPath,
$targetPath,
);
Expand Down

0 comments on commit 701f8a6

Please sign in to comment.