fix(dependson): Fixes how depends-on are managed
All checks were successful
Go-Tests / tests (push) Successful in 2m41s
Go-Tests / sonar (push) Successful in 58s

- depends-on were not renamed
- static files were not well managed
- droping depends-on deployment to fast

fixes #174 and #173
This commit is contained in:
2025-09-23 12:30:43 +02:00
parent f0436ebce1
commit 614a1df5ba
3 changed files with 27 additions and 16 deletions

View File

@@ -130,7 +130,7 @@ func Convert(config ConvertOptions, dockerComposeFile ...string) error {
// parse the compose files
project, err := parser.Parse(config.Profiles, config.EnvFiles, dockerComposeFile...)
if err != nil {
fmt.Println(err)
logger.Failure("Cannot parse compose files", err.Error())
return err
}