We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c645c5c + 359909f commit db7748aCopy full SHA for db7748a
CHANGELOG.md
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
7
+## [10.1.3] - 2023.08.23
8
+### Fixed
9
+- OpenAPI spec copied forcefully to destination directory
10
+
11
## [10.1.2] - 2023.08.10
12
### Added
13
- support for guzzlehttp/psr7 version 2.0 to generated composer.json
src/Command/GenerateCommand.php
@@ -204,7 +204,8 @@ private function copySpecification(StyleInterface $ss): void
204
205
$this->filesystem->copy(
206
$this->configuration->getSpecificationFilePath(),
207
- $destinationPath
+ $destinationPath,
208
+ true
209
);
210
}
211
0 commit comments