Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove incorrect quoting of variable value
This being make, the original implementation caused the value of the make variable COMPOSE_PROJECT_NAME to _include the surrounding double-quotes_, and this _happened_ to work just because we were using this variable in shell commands, where the quoting would be handled as normal CLI quoting of a string. However, since we _also_ make this make variable available as environment variable (through the `export` command through which we set env vars from a dotenv file), this ended up breaking things from Compose v2.4 through this change: docker/compose#9332.
- Loading branch information