fix(build): don't remove swagger files when running build:clean step

This commit is contained in:
kolaente 2023-09-12 13:12:30 +02:00
parent c5c74e9537
commit 378759e06d
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 0 additions and 3 deletions

View File

@ -453,9 +453,6 @@ func (Build) Clean() error {
if err := os.RemoveAll(BinLocation); err != nil && !os.IsNotExist(err) {
return err
}
if err := os.RemoveAll(swaggerDocsFolderLocation); err != nil && !os.IsNotExist(err) {
return err
}
return nil
}