If the user uses a flag with a space in it, like:
minikubeStart {
flags = ["--vm-driver none"]
}
The CommandExecutor will fail to run this command because the space is escaped (it will run minikube start --vm-driver\ none).
We can resolve this by warning the user that they have a space in the flag or by automatically splitting this into two parts for the command list.