---
title: "How can I fix script failures in Pipelines?"
date: "2025-05-08T09:19:06+00:00"
summary: "Learn how to fix script failures in Pipelines and manage exit strategies for smoother builds and deployments."
image:
type: "article"
url: "/acquia-cloud-platform/help/69021-how-can-i-fix-script-failures-pipelines"
id: "494f558a-9aee-41bc-bb52-ad56d5913d8e"
---

By default, Pipelines prepends build scripts with `set -e`, which causes the script to exit if any command has a non-zero exit code. You can override the behavior by including `set +e` in your build script.

Be aware that if you use `set +e`, the script does not fail when a command fails. Your script must manage its own exit strategy and exit codes.

Note

After you fix any detected issues with any pipeline jobs, run the `start` command again to restart the build.