Custom [dev] command in toml file not working

I am trying to run this in my netlify.toml file
[dev]
command = “mkdir -p dist && cp _redirects_local dist/_redirects && ember serve”

However when I run netlify dev I get

mkdir: _redirects_local: Not a directory
"mkdir -p dist && cp _redirects_local dist/_redirects && ember serve" exited with code 1. Shutting down Netlify Dev server

It creates directories for every word in the command string as well.

I am using
netlify-cli/2.54.0 darwin-x64 node-v10.20.1
iterm2 3.3.11
macOS Catalina 10.15.4

Hi @caev, that sounds like a bug. Would you mind filing that here: Issues · netlify/cli · GitHub? Also, one thing to try is using ; instead of && and see if that works better.