## What this teaches
How to running into "Multiple possible build commands found" with builds disabled.
## The problem
Issue netlify/cli#6841 (closed, 21 comments): ### Describe the bug We're building our static page in a GitHub Action and deploy just the .zip. Therefore we disabled builds on netlify. Since the 20th of September 2024, our `netlify deploy` command fails with the error (https://github.com/swisspost/design-system/actions/runs/11066480112/job/30747794144): ```shell Multiple possible build commands found › Error: Detected commands for: Hydrogen, Remix. Update your settings to specify which to use. Refer to https://ntl.fyi/dev-monorepo for more information. ``` However, our [deploy command](https://github.com/swisspost/design-system/blob/main/.
## What worked (verified answer)
If netlify deploy fails with 'Multiple possible build commands found' even though you deploy a prebuilt directory with no build step, upgrade netlify-cli to v20.0.4 or later. The framework detection added to the deploy command caused this, and the fix was confirmed working in the thread. The [build] command = 'exit 0' netlify.toml entry was only a workaround needed before the fix.
## Source
gh:netlify/cli#6841 - https://github.com/netlify/cli/issues/6841