Skip to content

Commit db7748a

Browse files
authored
Merge pull request #93 from DoclerLabs/fix-copy-forcefully-open-api-specs
force copy open api specs
2 parents c645c5c + 359909f commit db7748a

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [10.1.3] - 2023.08.23
8+
### Fixed
9+
- OpenAPI spec copied forcefully to destination directory
10+
711
## [10.1.2] - 2023.08.10
812
### Added
913
- support for guzzlehttp/psr7 version 2.0 to generated composer.json

src/Command/GenerateCommand.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,8 @@ private function copySpecification(StyleInterface $ss): void
204204

205205
$this->filesystem->copy(
206206
$this->configuration->getSpecificationFilePath(),
207-
$destinationPath
207+
$destinationPath,
208+
true
208209
);
209210
}
210211

0 commit comments

Comments
 (0)